Revert "Fixed issue with Dredge reminder text always indicating three cards"

This reverts commit 85e71fa162.
Username incorrectly specified.
This commit is contained in:
unknown 2015-09-18 15:39:43 -04:00
parent 85e71fa162
commit 899e2921f0

View file

@ -71,7 +71,7 @@ class DredgeEffect extends ReplacementEffectImpl {
super(Duration.WhileInGraveyard, Outcome.ReturnToHand);
this.amount = value;
this.staticText = new StringBuilder("Dredge ").append(Integer.toString(value))
.append(" <i>(If you would draw a card, instead you may put exactly " + value + " card(s) from the top of your library into your graveyard. If you do, return this card from your graveyard to your hand. Otherwise, draw a card.)</i>").toString();
.append(" <i>(If you would draw a card, instead you may put exactly three cards from the top of your library into your graveyard. If you do, return this card from your graveyard to your hand. Otherwise, draw a card.)</i>").toString();
}
public DredgeEffect(final DredgeEffect effect) {