Fixed spacing in "cannot add island to grid" error in IslandGrid

This commit is contained in:
Florian CUNY 2019-02-21 18:29:41 +01:00
parent 0d96eab394
commit c0c2b63af6

View File

@ -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 {