mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Pharika's Mender - Fixed that it could return any kind of card instead of correctly creature and enchantment cards.
This commit is contained in:
parent
f6744cd29a
commit
01f4ed66ba
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ public class PharikasMender extends CardImpl<PharikasMender> {
|
|||
|
||||
// When Pharika's Mender enters the battlefield, you may return target creature or enchantment card from your graveyard to your hand.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new ReturnFromGraveyardToHandTargetEffect());
|
||||
Target target = new TargetCardInYourGraveyard();
|
||||
Target target = new TargetCardInYourGraveyard(filter);
|
||||
target.setRequired(true);
|
||||
ability.addTarget(target);
|
||||
this.addAbility(ability);
|
||||
|
|
Loading…
Reference in a new issue