From 899e2921f0a0ed8cc0fcff7b5fc0f75413579c28 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 18 Sep 2015 15:39:43 -0400 Subject: [PATCH] Revert "Fixed issue with Dredge reminder text always indicating three cards" This reverts commit 85e71fa162e6248ebd79ec800e9f66d6cd68de70. Username incorrectly specified. --- Mage/src/mage/abilities/keyword/DredgeAbility.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/mage/abilities/keyword/DredgeAbility.java b/Mage/src/mage/abilities/keyword/DredgeAbility.java index 44ff99b07f..afed19ef46 100644 --- a/Mage/src/mage/abilities/keyword/DredgeAbility.java +++ b/Mage/src/mage/abilities/keyword/DredgeAbility.java @@ -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(" (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.)").toString(); + .append(" (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.)").toString(); } public DredgeEffect(final DredgeEffect effect) {