diff options
-rw-r--r-- | src/main/java/org/bukkit/craftbukkit/CraftWorld.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java index e740dea7..9781c48b 100644 --- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java +++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java @@ -162,10 +162,10 @@ public class CraftWorld implements World { // This is larger than the distance of loaded chunks that actually surround a player // The player is the center of a 21x21 chunk grid, so the edge is 10 chunks (160 blocks) away from the player if (Math.abs(loc.getBlockX() - (x << 4)) <= 256 && Math.abs(loc.getBlockZ() - (z << 4)) <= 256) { - return false; + return true; } } - return true; + return false; } public boolean loadChunk(int x, int z, boolean generate) { |