* Pine Walker - Fixed that the turned face up ability did also trigger for other creatures if Pine Walker was face down (fixes #581).

This commit is contained in:
LevelX2 2014-09-29 15:18:41 +02:00
parent 87b1b64d80
commit 6a9a7d11e8
5 changed files with 61 additions and 6 deletions

View file

@ -70,7 +70,7 @@ public class IcefeatherAven extends CardImpl {
// Morph {1}{G}{U}
this.addAbility(new MorphAbility(this, new ManaCostsImpl("{1}{G}{U}")));
// When Icefeather Aven is turned face up, you may return another target creature to its owner's hand.
Ability ability = new TurnedFaceUpSourceTriggeredAbility(new ReturnToHandTargetEffect());
Ability ability = new TurnedFaceUpSourceTriggeredAbility(new ReturnToHandTargetEffect(), false, true);
ability.addTarget(new TargetCreaturePermanent(filter));
this.addAbility(ability);