Added another todo.

This commit is contained in:
Tobias Ottenweller 2013-06-08 22:19:52 +02:00
parent 257d1f5110
commit c3ca060ef0

View File

@ -182,6 +182,7 @@ public class ChunkGenerator
protected static boolean chunkIsInsideBorder(int x, int z, World w, Border b) 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)); Location chunkLocation = new Location(w, (double)(x << 4), (double)100, (double)(z << 4));
return b.checkBorder(chunkLocation) == null; return b.checkBorder(chunkLocation) == null;
} }