SPIGOT-1976: Never unload in use chunks.

Dieser Commit ist enthalten in:
md_5 2016-03-19 14:40:23 +11:00
Ursprung 8269b99393
Commit 4cd46b242b

Datei anzeigen

@ -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;
}