* Fixed missing discard action of DiscardTargetCost.

This commit is contained in:
LevelX2 2014-11-24 20:45:18 +01:00
parent c22b54d262
commit 7c6db7f5d4

View file

@ -83,6 +83,7 @@ public class DiscardTargetCost extends CostImpl {
if (card == null) {
return false;
}
player.discard(card, ability, game);
this.cards.add(card.copy());
}
}