From e3ae22da80586dcf98e90742610c688e5e7de95d Mon Sep 17 00:00:00 2001 From: sk89q Date: Tue, 1 Jul 2014 12:41:52 -0700 Subject: [PATCH] Identity.combine(other) should just return other. --- src/main/java/com/sk89q/worldedit/math/transform/Identity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/sk89q/worldedit/math/transform/Identity.java b/src/main/java/com/sk89q/worldedit/math/transform/Identity.java index 6e7622ec5..a5f22038d 100644 --- a/src/main/java/com/sk89q/worldedit/math/transform/Identity.java +++ b/src/main/java/com/sk89q/worldedit/math/transform/Identity.java @@ -41,7 +41,7 @@ public class Identity implements Transform { if (other instanceof Identity) { return this; } else { - return new CombinedTransform(this, other); + return other; } } }