mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2025-01-26 18:11:43 +01:00
Fixed spacing in "cannot add island to grid" error in IslandGrid
This commit is contained in:
parent
0d96eab394
commit
c0c2b63af6
@ -24,7 +24,7 @@ class IslandGrid {
|
||||
TreeMap<Integer, Island> zEntry = grid.get(island.getMinX());
|
||||
if (zEntry.containsKey(island.getMinZ())) {
|
||||
BentoBox.getInstance().logError("Cannot add island to grid because there is an overlapping");
|
||||
BentoBox.getInstance().logError("island already registered at this location:" + island.getCenter());
|
||||
BentoBox.getInstance().logError("island already registered at this location: " + island.getCenter());
|
||||
BentoBox.getInstance().logError("This is most likely caused by island distances changing mid-game, or an old database file");
|
||||
return false;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user