Fixed getting and setting of blocks in unloaded chunks

This commit is contained in:
zml2008
2011-08-29 17:31:08 -07:00
parent 02d8acfa81
commit bc6315fb24
3 changed files with 18 additions and 0 deletions

View File

@ -673,6 +673,13 @@ public class BukkitWorld extends LocalWorld {
return type <= 255 && Material.getMaterial(type) != null;
}
@Override
public void checkLoadedChuck(Vector pt) {
if (!world.isChunkLoaded(pt.getBlockX() >> 4, pt.getBlockZ() >> 4)) {
world.loadChunk(pt.getBlockX() >> 4, pt.getBlockZ() >> 4);
}
}
@Override
public boolean equals(Object other) {
if (!(other instanceof BukkitWorld)) {