13
0
geforkt von Mirrors/Paper

Fixed isChunkInUse()

By: Raphfrk <raphfrk@gmail.com>
Dieser Commit ist enthalten in:
CraftBukkit/Spigot 2011-03-02 18:50:39 +00:00
Ursprung dda9f2ec3d
Commit 0ee94a8a24

Datei anzeigen

@ -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) {