mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-27 04:55:47 +01:00
Check unload queue so we don't accidentally leave a chunk loaded
This commit is contained in:
parent
7dde6cc566
commit
feb0327d22
@ -197,7 +197,8 @@ public abstract class World implements IBlockAccess {
|
||||
|
||||
for (int k1 = i; k1 <= l; ++k1) {
|
||||
for (int l1 = k; l1 <= j1; ++l1) {
|
||||
if (!this.isChunkLoaded(k1, l1)) {
|
||||
// CraftBukkit - check unload queue too so we don't leak a chunk
|
||||
if (!this.isChunkLoaded(k1, l1) || ((WorldServer) this).chunkProviderServer.unloadQueue.contains(k1, l1)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user