- Fixed LKI's of tokens not being marked as tokens.

This commit is contained in:
Sloth
2013-08-28 10:00:39 +00:00
parent 9380a06a35
commit f1ab723957

View File

@@ -121,6 +121,7 @@ public final class CardUtil {
newCopy.addAlternateState(CardCharacteristicName.Cloner); newCopy.addAlternateState(CardCharacteristicName.Cloner);
} }
newCopy.setType(new ArrayList<String>(in.getType())); newCopy.setType(new ArrayList<String>(in.getType()));
newCopy.setToken(in.isToken());
newCopy.setTriggers(in.getTriggers(), false); newCopy.setTriggers(in.getTriggers(), false);
for (SpellAbility sa : in.getManaAbility()) { for (SpellAbility sa : in.getManaAbility()) {
newCopy.addSpellAbility(sa); newCopy.addSpellAbility(sa);