Skip to content

Commit 866920b

Browse files
committed
Refine max-capacity-reached warning message to include the area that got rendered
1 parent e1e9212 commit 866920b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/de/bluecolored/bluemap/core/map/hires/HiresModelRenderer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public void render(World world, Vector3i modelMin, Vector3i modelMax, TileModel
136136
});
137137
} catch (MaxCapacityReachedException ex) {
138138
Logger.global.noFloodWarning("max-capacity-reached",
139-
"One or more map-tiles are too complex to be completed: " + ex);
139+
"One or more map-tiles are too complex to be completed (@~ %s to %s): %s".formatted(modelMin, modelMax, ex));
140140
}
141141
}
142142
}

0 commit comments

Comments
 (0)