3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-19 14:20:05 +02:00

Identity.combine(other) should just return other.

Dieser Commit ist enthalten in:
sk89q 2014-07-01 12:41:52 -07:00
Ursprung 63411b427a
Commit e3ae22da80

Datei anzeigen

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