mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
- CheckStyle.
This commit is contained in:
@@ -957,7 +957,7 @@ public class GameAction {
|
||||
} // if isAura
|
||||
|
||||
if (c.isCreature()) {
|
||||
if(c.isEnchanting()) {
|
||||
if (c.isEnchanting()) {
|
||||
c.unEnchantEntity(c.getEnchanting());
|
||||
checkAgain = true;
|
||||
}
|
||||
|
||||
@@ -140,7 +140,7 @@ public class CardPanelHeavy extends CardPanelBase {
|
||||
if (c.isFlip()) {
|
||||
this.changeStateButton.setVisible(true);
|
||||
this.changeStateButton.setText("Flip");
|
||||
} else if(c.isDoubleFaced()) {
|
||||
} else if (c.isDoubleFaced()) {
|
||||
this.changeStateButton.setVisible(true);
|
||||
this.changeStateButton.setText("Transform");
|
||||
} else {
|
||||
|
||||
@@ -104,7 +104,7 @@ public class CardPanelLite extends CardPanelBase {
|
||||
if (c.isFlip()) {
|
||||
this.bChangeState.setVisible(true);
|
||||
this.bChangeState.setText("Flip");
|
||||
} else if(c.isDoubleFaced()) {
|
||||
} else if (c.isDoubleFaced()) {
|
||||
this.bChangeState.setVisible(true);
|
||||
this.bChangeState.setText("Transform");
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user