mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
* Abondon Hope - Fixed rule text (#6532).
This commit is contained in:
parent
3aefbfb360
commit
5e63c44c5d
2 changed files with 5 additions and 4 deletions
|
|
@ -33,7 +33,7 @@ public class DiscardCardYouChooseTargetEffect extends OneShotEffect {
|
|||
private static final FilterCard filterOneCard = new FilterCard("one card");
|
||||
|
||||
public DiscardCardYouChooseTargetEffect() {
|
||||
this(new FilterCard("a card"));
|
||||
this(StaticFilters.FILTER_CARD_A);
|
||||
}
|
||||
|
||||
public DiscardCardYouChooseTargetEffect(TargetController targetController) {
|
||||
|
|
@ -170,7 +170,7 @@ public class DiscardCardYouChooseTargetEffect extends OneShotEffect {
|
|||
} else {
|
||||
if (numberCardsToReveal instanceof StaticValue) {
|
||||
sb.append(" reveals ");
|
||||
sb.append(CardUtil.numberToText(((StaticValue) numberCardsToReveal).getValue()) + " cards");
|
||||
sb.append(CardUtil.numberToText(((StaticValue) numberCardsToReveal).getValue())).append(" cards");
|
||||
sb.append(" from their hand");
|
||||
} else {
|
||||
sb.append(" reveals a number of cards from their hand equal to ");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue