Minor rework of transform.

This commit is contained in:
LevelX2 2016-09-28 22:37:20 +02:00
parent b6816e1374
commit a5af6c3a1d

View file

@ -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() {