diff --git a/Mage.Common/src/mage/view/CardView.java b/Mage.Common/src/mage/view/CardView.java index 885fa1ff604..2c1aa4c5aed 100644 --- a/Mage.Common/src/mage/view/CardView.java +++ b/Mage.Common/src/mage/view/CardView.java @@ -89,7 +89,7 @@ public class CardView extends SimpleCardView { protected CardView ability; protected int type; - protected boolean canTransform; + protected boolean transformable; protected CardView secondCardFace; protected boolean transformed; @@ -279,7 +279,7 @@ public class CardView extends SimpleCardView { this.subTypes = card.getSubtype(game); this.superTypes = card.getSupertype(); this.color = card.getColor(game); - this.canTransform = card.isTransformable(); + this.transformable = card.isTransformable(); this.flipCard = card.isFlipCard(); this.faceDown = !showFaceUp; @@ -652,7 +652,7 @@ public class CardView extends SimpleCardView { } public boolean canTransform() { - return this.canTransform; + return this.transformable; } public boolean isSplitCard() {