Fixed wrong/miss numbers in card rules (see #10067 and prev commit)

This commit is contained in:
Oleg Agafonov 2023-02-25 14:34:26 +04:00
parent 99d1800214
commit 5c30467c48
75 changed files with 105 additions and 88 deletions

View file

@ -30,7 +30,7 @@ public class DiscardTargetCost extends CostImpl {
public DiscardTargetCost(TargetCardInHand target, boolean randomDiscard) {
this.addTarget(target);
this.randomDiscard = randomDiscard;
this.text = "discard " + target.getTargetName();
this.text = "discard " + target.getDescription();
}
public DiscardTargetCost(DiscardTargetCost cost) {