mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
Fixes #950
This commit is contained in:
parent
79864d269a
commit
f26278f72e
@ -114,7 +114,7 @@ public class FastQueue_1_9 extends SlowQueue {
|
|||||||
if (!MainUtil.canSendChunk) {
|
if (!MainUtil.canSendChunk) {
|
||||||
for (final Chunk chunk : chunks) {
|
for (final Chunk chunk : chunks) {
|
||||||
chunk.getWorld().refreshChunk(chunk.getX(), chunk.getZ());
|
chunk.getWorld().refreshChunk(chunk.getX(), chunk.getZ());
|
||||||
chunk.unload(true, false);
|
chunk.unload(true, true);
|
||||||
chunk.load();
|
chunk.load();
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
@ -299,7 +299,7 @@ public class FastQueue_1_9 extends SlowQueue {
|
|||||||
if (!chunk.isLoaded()) {
|
if (!chunk.isLoaded()) {
|
||||||
chunk.load(false);
|
chunk.load(false);
|
||||||
} else {
|
} else {
|
||||||
chunk.unload(true, false);
|
chunk.unload(true, true);
|
||||||
chunk.load(false);
|
chunk.load(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user