mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Minor rework of transform.
This commit is contained in:
parent
b6816e1374
commit
a5af6c3a1d
1 changed files with 3 additions and 3 deletions
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue