mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
additional fix for commander colors from #12429
This commit is contained in:
parent
892ccddd35
commit
a3194970ca
1 changed files with 1 additions and 1 deletions
|
|
@ -369,7 +369,7 @@ public class CardView extends SimpleCardView {
|
||||||
this.power = Integer.toString(card.getPower().getValue());
|
this.power = Integer.toString(card.getPower().getValue());
|
||||||
this.toughness = Integer.toString(card.getToughness().getValue());
|
this.toughness = Integer.toString(card.getToughness().getValue());
|
||||||
this.cardTypes = new ArrayList<>(card.getCardType());
|
this.cardTypes = new ArrayList<>(card.getCardType());
|
||||||
this.color = card.getColor(null);
|
this.color = card.getColor(null).copy();
|
||||||
this.superTypes = new ArrayList<>(card.getSuperType());
|
this.superTypes = new ArrayList<>(card.getSuperType());
|
||||||
this.subTypes = card.getSubtype().copy();
|
this.subTypes = card.getSubtype().copy();
|
||||||
this.rules = new ArrayList<>(card.getRules());
|
this.rules = new ArrayList<>(card.getRules());
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue