diff --git a/Mage/src/mage/game/permanent/PermanentToken.java b/Mage/src/mage/game/permanent/PermanentToken.java index 9c7eb0ebad4..8735cb10f52 100644 --- a/Mage/src/mage/game/permanent/PermanentToken.java +++ b/Mage/src/mage/game/permanent/PermanentToken.java @@ -75,12 +75,12 @@ public class PermanentToken extends PermanentImpl { for (ManaCost cost: token.getManaCost()) { this.getManaCost().add(cost.copy()); } - this.cardType.addAll(token.getCardType()); + this.cardType = token.getCardType(); this.color = token.getColor().copy(); this.power.initValue(token.getPower().getValue()); this.toughness.initValue(token.getToughness().getValue()); - this.supertype.addAll(token.getSupertype()); - this.subtype.addAll(token.getSubtype()); + this.supertype = token.getSupertype(); + this.subtype = token.getSubtype(); } @Override