mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-25 12:05:13 +01:00
Fix missing parameter in BlueMapCLI
This commit is contained in:
parent
4da988d31c
commit
ca5d8a0fb4
@ -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)
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user