Fix missing parameter in BlueMapCLI

This commit is contained in:
Lukas Rieger (Blue) 2022-07-24 12:15:02 +02:00
parent 4da988d31c
commit ca5d8a0fb4
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2

View File

@ -197,7 +197,7 @@ public void startWebserver(BlueMapService blueMap, boolean verbose) throws IOExc
routingRequestHandler.register(
"maps/" + Pattern.quote(mapId) + "/(.*)",
"$1",
new MapRequestHandler(mapId, worldId, blueMap.getStorage(mapConfig.getStorage()), this, blueMap.getConfigs().getPluginConfig(), uuid -> true)
new MapRequestHandler(mapId, worldId, blueMap.getStorage(mapConfig.getStorage()), Map.of(), this, blueMap.getConfigs().getPluginConfig(), uuid -> true)
);
}