Switch MCPC+ to using unloadChunkRequest - unloadChunk() seems to not clean up properly

This commit is contained in:
Mike Primm 2013-03-17 23:43:11 -05:00
parent ac0bef49ca
commit ecbdf6e8d9
5 changed files with 18 additions and 2 deletions

View file

@ -93,4 +93,9 @@ public class BukkitVersionHelperCB extends BukkitVersionHelperGeneric {
nmst_y = getField(nms_tileentity, new String[] { "y" }, int.class);
nmst_z = getField(nms_tileentity, new String[] { "z" }, int.class);
}
@Override
public void unloadChunkNoSave(World w, int cx, int cz) {
w.unloadChunk(cx, cz, false, false);
}
}