1
0
mirror of https://github.com/plexusorg/Plex-FAWE.git synced 2025-04-11 02:23:14 +00:00

Identity.combine(other) should just return other.

This commit is contained in:
sk89q 2014-07-01 12:41:52 -07:00
parent 63411b427a
commit e3ae22da80

@ -41,7 +41,7 @@ public class Identity implements Transform {
if (other instanceof Identity) { if (other instanceof Identity) {
return this; return this;
} else { } else {
return new CombinedTransform(this, other); return other;
} }
} }
} }