mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
* Silent Sentinel - Fixed that enchantment returned wrongly tapped onto the battlefield.
This commit is contained in:
parent
f23af4406b
commit
dcab08bd6d
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ public class SilentSentinel extends CardImpl<SilentSentinel> {
|
|||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
// Whenever Silent Sentinel attacks, you may return target enchantment card from your graveyard to the battlefield.
|
||||
Ability ability = new AttacksTriggeredAbility(new ReturnFromGraveyardToBattlefieldTargetEffect(true), true);
|
||||
Ability ability = new AttacksTriggeredAbility(new ReturnFromGraveyardToBattlefieldTargetEffect(), true);
|
||||
ability.addTarget(new TargetCardInGraveyard(filter));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue