Fix BlockArrayClipboard offset

This commit is contained in:
Jesse Boyd
2019-11-05 15:08:44 +00:00
parent 69b2b4eea8
commit 0bfb1dbdd1
3 changed files with 37 additions and 39 deletions

View File

@ -86,10 +86,8 @@ public class AsyncChunk implements Chunk {
}
if (world.isWorld()) {
if (world.isChunkLoaded(x, z)) {
if (world.isChunkLoaded(x, z)) {
task.run();
return task.value;
}
task.run();
return task.value;
}
}
return TaskManager.IMP.sync(task);