From 257d1f511044777a0ee77e4f7d7f9fcbd226eb4b Mon Sep 17 00:00:00 2001 From: Tobias Ottenweller Date: Sat, 8 Jun 2013 22:13:36 +0200 Subject: [PATCH] Added a todo note. --- .../java/de/craftinc/borderprotection/util/ChunkGenerator.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/de/craftinc/borderprotection/util/ChunkGenerator.java b/src/main/java/de/craftinc/borderprotection/util/ChunkGenerator.java index 2f66615..851ac50 100644 --- a/src/main/java/de/craftinc/borderprotection/util/ChunkGenerator.java +++ b/src/main/java/de/craftinc/borderprotection/util/ChunkGenerator.java @@ -164,6 +164,8 @@ public class ChunkGenerator if (chunkZ <= maxChunkZ) { chunkGenerationStatus.put(w, new Integer[]{chunkX, chunkZ}); + + // TODO: only display a message every 10s or so with a fake percentage number. Plugin.instance.getLogger().info("Loading/Generating Chunk ( x=" + chunkX + " z=" + chunkZ + " world=" + w.getName() + " )"); Chunk chunk = w.getChunkAt(chunkX, chunkZ);