Fixed checkLoadedChunk

This commit is contained in:
zml2008
2011-10-09 21:57:29 -07:00
committed by Wizjany
parent b89ede09a6
commit 050eef8dc7
3 changed files with 4 additions and 4 deletions

View File

@ -680,7 +680,7 @@ public class BukkitWorld extends LocalWorld {
}
@Override
public void checkLoadedChuck(Vector pt) {
public void checkLoadedChunk(Vector pt) {
if (!world.isChunkLoaded(pt.getBlockX() >> 4, pt.getBlockZ() >> 4)) {
world.loadChunk(pt.getBlockX() >> 4, pt.getBlockZ() >> 4);
}