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 bf16d18371
commit bee16ef331
5 changed files with 18 additions and 2 deletions

View file

@ -106,4 +106,8 @@ public abstract class BukkitVersionHelper {
* Get field value from NBT compound
*/
public abstract Object getFieldValue(Object nbt, String field);
/**
* Unload chunk no save needed
*/
public abstract void unloadChunkNoSave(World w, int cx, int cz);
}