You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: BlueMapBukkit/src/main/resources/bluemap-bukkit.conf
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ renderThreadCount: -2
24
24
25
25
# If this is true, BlueMap might send really basic metrics reports containg only the implementation-type and the version that is being used to https://metrics.bluecolored.de/bluemap/
26
26
# This allows me to track the basic usage of BlueMap and helps me stay motivated to further develop this tool! Please leave it on :)
27
-
# An example report looks like this: {"implementation":"CLI","version":"%version%"}
27
+
# An example report looks like this: {"implementation":"bukkit","version":"%version%"}
28
28
metrics: true
29
29
30
30
# The folder where bluemap saves data-files it needs during runtime or to save e.g. the render-progress to resume it later.
@@ -74,6 +74,10 @@ maps: [
74
74
75
75
# The path to the save-folder of the world to render
76
76
world: "world"
77
+
78
+
# The position on the world where the map will be centered if you open it.
79
+
# This defaults to the world-spawn if you don't set it.
80
+
#startPos: [500, -820]
77
81
78
82
# If this is false, BlueMap tries to omit all blocks that are not visible from above-ground.
79
83
# More specific: Block-Faces that have a sunlight/skylight value of 0 are removed.
Logger.global.logInfo("Found unfinished render, continuing ... (If you want to start a new render, delete the this file: " + rmstate.getCanonicalPath());
172
+
} catch (IOExceptionex) {
173
+
Logger.global.logError("Failed to read saved render-state! Remove the file " + rmstate.getCanonicalPath() + " to start a new render.", ex);
Logger.global.logInfo("(This is normal if nothing has changed in the world since the last render. Use -f on the command-line to force a render of all chunks)");
175
-
}
176
-
177
-
if (tiles.isEmpty()) {
178
-
continue;
175
+
} else {
176
+
for (MapTypemap : maps.values()) {
177
+
Logger.global.logInfo("Creating render-task for map '" + map.getId() + "' ...");
Logger.global.logInfo("(This is normal if nothing has changed in the world since the last render. Use -f on the command-line to force a render of all chunks)");
Copy file name to clipboardExpand all lines: BlueMapCLI/src/main/resources/bluemap-cli.conf
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ renderThreadCount: 0
24
24
25
25
# If this is true, BlueMap might send really basic metrics reports containg only the implementation-type and the version that is being used to https://metrics.bluecolored.de/bluemap/
26
26
# This allows me to track the basic usage of BlueMap and helps me stay motivated to further develop this tool! Please leave it on :)
27
-
# An example report looks like this: {"implementation":"CLI","version":"%version%"}
27
+
# An example report looks like this: {"implementation":"cli","version":"%version%"}
28
28
metrics: true
29
29
30
30
# The folder where bluemap saves data-files it needs during runtime
@@ -73,6 +73,10 @@ maps: [
73
73
74
74
# The path to the save-folder of the world to render
75
75
world: "world"
76
+
77
+
# The position on the world where the map will be centered if you open it.
78
+
# This defaults to the world-spawn if you don't set it.
79
+
#startPos: [500, -820]
76
80
77
81
# If this is false, BlueMap tries to omit all blocks that are not visible from above-ground.
78
82
# More specific: Block-Faces that have a sunlight/skylight value of 0 are removed.
0 commit comments