From 847d22f7d6b97ec7c41102a2810cfa8d234d23eb Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Wed, 29 Apr 2020 21:30:15 +0100 Subject: [PATCH] This seems to fix #429 - the undo remove or add block removal adding thing. --- .../com/boydti/fawe/beta/implementation/chunk/ChunkHolder.java | 1 + 1 file changed, 1 insertion(+) diff --git a/worldedit-core/src/main/java/com/boydti/fawe/beta/implementation/chunk/ChunkHolder.java b/worldedit-core/src/main/java/com/boydti/fawe/beta/implementation/chunk/ChunkHolder.java index 50fa4e8ca..4442faff4 100644 --- a/worldedit-core/src/main/java/com/boydti/fawe/beta/implementation/chunk/ChunkHolder.java +++ b/worldedit-core/src/main/java/com/boydti/fawe/beta/implementation/chunk/ChunkHolder.java @@ -413,6 +413,7 @@ public class ChunkHolder> implements IQueueChunk { public T call(IChunkSet set, Runnable finalize) { if (set != null) { IChunkGet get = getOrCreateGet(); + get.trim(false); set = getExtent().processSet(this, get, set); if (set != null) { return get.call(set, finalize);