mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-23 08:46:44 +01:00
SPIGOT-1976: Never unload in use chunks.
This commit is contained in:
parent
8269b99393
commit
4cd46b242b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue