- Fixed cost lists not using LKI's (once again).

This commit is contained in:
Sloth
2013-10-03 11:23:21 +00:00
parent 109a990b28
commit 8c8bde0799

View File

@@ -92,7 +92,7 @@ public abstract class CostPartWithList extends CostPart {
}
public final boolean executePayment(SpellAbility ability, Card targetCard) {
this.list.add(targetCard);
this.list.add(CardUtil.getLKICopy(targetCard));
doPayment(ability, targetCard);
return true;
}