* Silent Sentinel - Fixed that enchantment returned wrongly tapped onto the battlefield.

This commit is contained in:
LevelX2 2014-04-11 00:30:05 +02:00
parent f23af4406b
commit dcab08bd6d

View file

@ -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);
}