From 295baa421791ccac4326afde220fe6040a70464d Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Tue, 7 Feb 2017 19:23:26 +1100 Subject: [PATCH] Fixes #418 --- .../sk89q/worldedit/function/operation/ForwardExtentCopy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/sk89q/worldedit/function/operation/ForwardExtentCopy.java b/core/src/main/java/com/sk89q/worldedit/function/operation/ForwardExtentCopy.java index 718b2af4..6d58e87f 100644 --- a/core/src/main/java/com/sk89q/worldedit/function/operation/ForwardExtentCopy.java +++ b/core/src/main/java/com/sk89q/worldedit/function/operation/ForwardExtentCopy.java @@ -254,8 +254,8 @@ public class ForwardExtentCopy implements Operation { transExt.setTransform(currentTransform); } - affected += blockVisitor.getAffected(); } + affected = blockVisitor.getAffected(); return null; }