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
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ public class BlueMapCLI implements ServerInterface {
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)
);
}