mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 04:39:18 -08:00
Fixed Issue 167.
This commit is contained in:
parent
51e3e238af
commit
74b9b53091
8 changed files with 77 additions and 5 deletions
|
|
@ -85,6 +85,7 @@ public class CardPanel extends MagePermanent implements MouseListener, MouseMoti
|
|||
private boolean isPermanent;
|
||||
private boolean hasSickness;
|
||||
private boolean isFoil;
|
||||
private String zone;
|
||||
|
||||
public CardPanel(CardView newGameCard, UUID gameId, boolean loadImage, ActionCallback callback, final boolean foil) {
|
||||
this.gameCard = newGameCard;
|
||||
|
|
@ -192,6 +193,16 @@ public class CardPanel extends MagePermanent implements MouseListener, MouseMoti
|
|||
return this.isFoil;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setZone(String zone) {
|
||||
this.zone = zone;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getZone() {
|
||||
return zone;
|
||||
}
|
||||
|
||||
public void setFoil(boolean foil) {
|
||||
this.isFoil = foil;
|
||||
if (foil) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue