diff --git a/Mage.Sets/src/mage/cards/d/DreadWanderer.java b/Mage.Sets/src/mage/cards/d/DreadWanderer.java index 9bc5b6c82ad..87b9d1b7682 100644 --- a/Mage.Sets/src/mage/cards/d/DreadWanderer.java +++ b/Mage.Sets/src/mage/cards/d/DreadWanderer.java @@ -1,4 +1,3 @@ - package mage.cards.d; import java.util.UUID; @@ -34,7 +33,15 @@ public final class DreadWanderer extends CardImpl { // {2}{B}: Return Dread Wanderer from your graveyard to the battlefield. // Activate this ability only any time you could cast a sorcery and only if you have one or fewer cards in hand. - ConditionalActivatedAbility ability = new ConditionalActivatedAbility(Zone.GRAVEYARD, new ReturnSourceFromGraveyardToBattlefieldEffect(), new ManaCostsImpl("{2}{B}"), HeckbentCondition.instance); + ConditionalActivatedAbility ability = new ConditionalActivatedAbility( + Zone.GRAVEYARD, + new ReturnSourceFromGraveyardToBattlefieldEffect(), + new ManaCostsImpl("{2}{B}"), + HeckbentCondition.instance, + "{2}{B}: Return {this} from your graveyard to the battlefield. " + + "Activate this ability only any time you could cast a sorcery " + + "and only if you have one or fewer cards in hand." + ); ability.setTiming(TimingRule.SORCERY); addAbility(ability); }