mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Merge pull request #1279 from hanasu/master
Fixed issue with Dredge rules text where it always read "three cards"
This commit is contained in:
commit
8fe48b78dd
1 changed files with 1 additions and 1 deletions
|
@ -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 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();
|
||||
.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();
|
||||
}
|
||||
|
||||
public DredgeEffect(final DredgeEffect effect) {
|
||||
|
|
Loading…
Reference in a new issue