Added a bit more info on super-flat chunk regen

This commit is contained in:
tastybento 2018-07-14 12:36:37 -07:00
parent dedaebc2b6
commit 65b656b95c

View File

@ -35,7 +35,7 @@ public class CleanSuperFlatListener extends AbstractFlagListener {
return;
}
world.regenerateChunk(e.getChunk().getX(), e.getChunk().getZ());
plugin.logWarning("Regenerating superflat chunk at " + (e.getChunk().getX() * 16) + "," + (e.getChunk().getZ() * 16));
plugin.logWarning("Regenerating superflat chunk in " + world.getName() + " at blocks " + (e.getChunk().getX() * 16) + "," + (e.getChunk().getZ() * 16));
}