SPIGOT-1976: Never unload in use chunks.

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2016-03-19 14:40:23 +11:00
parent 118951667e
commit 75c3223fb3

View file

@ -179,7 +179,7 @@ public class CraftWorld implements World {
}
public boolean unloadChunk(int x, int z, boolean save, boolean safe) {
if (safe && isChunkInUse(x, z)) {
if (isChunkInUse(x, z)) {
return false;
}