2
0
mirror of https://github.com/PaperMC/Paper.git synced 2025-03-07 15:38:14 +08:00

SPIGOT-1976: Never unload in use chunks.

This commit is contained in:
md_5 2016-03-19 14:40:23 +11:00
parent 8269b99393
commit 4cd46b242b

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