From c3ca060ef004a732ecc950e8e606290f88d6b8ee Mon Sep 17 00:00:00 2001 From: Tobias Ottenweller Date: Sat, 8 Jun 2013 22:19:52 +0200 Subject: [PATCH] Added another todo. --- .../java/de/craftinc/borderprotection/util/ChunkGenerator.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/de/craftinc/borderprotection/util/ChunkGenerator.java b/src/main/java/de/craftinc/borderprotection/util/ChunkGenerator.java index 851ac50..071c20d 100644 --- a/src/main/java/de/craftinc/borderprotection/util/ChunkGenerator.java +++ b/src/main/java/de/craftinc/borderprotection/util/ChunkGenerator.java @@ -182,6 +182,7 @@ public class ChunkGenerator protected static boolean chunkIsInsideBorder(int x, int z, World w, Border b) { + // TODO: make the generation area a few blocks bigger then the actual size of border. Location chunkLocation = new Location(w, (double)(x << 4), (double)100, (double)(z << 4)); return b.checkBorder(chunkLocation) == null; }