diff --git a/res/cardsfolder/f/forbid.txt b/res/cardsfolder/f/forbid.txt index 195f24fb0db..a82b6e382bd 100644 --- a/res/cardsfolder/f/forbid.txt +++ b/res/cardsfolder/f/forbid.txt @@ -3,7 +3,7 @@ ManaCost:1 U U Types:Instant Text:no text A:SP$ Counter | Cost$ 1 U U | TargetType$ Spell | TgtPrompt$ Select target spell | ValidTgts$ Card | Destination$ Graveyard | SpellDescription$ Counter target spell. -A:SP$ Counter | Cost$ 1 U U Discard<2/Any> | TargetType$ Spell | TgtPrompt$ Select target spell | ValidTgts$ Card | Destination$ Graveyard | CostDesc$ Buyback | SpellDescription$ - Discard two cards. (You may discard two cards in addition to any other costs as you cast this spell. If you do, put this card into your hand as it resolves.) | SubAbility$ SVar=DBChange +A:SP$ Counter | Cost$ 1 U U Discard<2/Card> | TargetType$ Spell | TgtPrompt$ Select target spell | ValidTgts$ Card | Destination$ Graveyard | CostDesc$ Buyback | SpellDescription$ - Discard two cards. (You may discard two cards in addition to any other costs as you cast this spell. If you do, put this card into your hand as it resolves.) | SubAbility$ SVar=DBChange SVar:DBChange:DB$ChangeZone | Origin$ Stack | Destination$ Hand SVar:RemAIDeck:True SVar:Rarity:Uncommon diff --git a/src/main/java/forge/card/cost/CostDiscard.java b/src/main/java/forge/card/cost/CostDiscard.java index 45627b108bc..d5bd03493b7 100644 --- a/src/main/java/forge/card/cost/CostDiscard.java +++ b/src/main/java/forge/card/cost/CostDiscard.java @@ -236,7 +236,7 @@ public class CostDiscard extends CostPartWithList { type.append(" ").append(discType); } StringBuilder sb = new StringBuilder(); - sb.append("Select a"); + sb.append("Select a "); sb.append(part.getDescriptiveType()); sb.append(" to discard."); if (nNeeded > 1) {