* Recurring Nightmare - Minor rule text fix.

This commit is contained in:
LevelX2 2020-01-10 21:44:23 +01:00
parent d3a925d2c9
commit 8db7d492f7

View file

@ -29,7 +29,7 @@ public final class RecurringNightmare extends CardImpl {
new ReturnFromGraveyardToBattlefieldTargetEffect(),
new SacrificeTargetCost(new TargetControlledPermanent(StaticFilters.FILTER_CONTROLLED_CREATURE))
);
ability.addTarget(new TargetCardInYourGraveyard(StaticFilters.FILTER_CARD_CREATURE));
ability.addTarget(new TargetCardInYourGraveyard(StaticFilters.FILTER_CARD_CREATURE_YOUR_GRAVEYARD));
ability.addCost(new ReturnToHandFromBattlefieldSourceCost());
this.addAbility(ability);
}