* Gilt-Leaf Winnower - Fixed that the triggered ability was not optional.

This commit is contained in:
LevelX2 2015-07-10 10:46:06 +02:00
parent 198a32102d
commit 5739fd7a57

View file

@ -69,7 +69,7 @@ public class GiltLeafWinnower extends CardImpl {
this.addAbility(new MenaceAbility()); this.addAbility(new MenaceAbility());
// When Gilt-Leaf Winnower enters the battlefield, you may destroy target non-Elf creature whose power and toughness aren't equal. // When Gilt-Leaf Winnower enters the battlefield, you may destroy target non-Elf creature whose power and toughness aren't equal.
Ability ability = new EntersBattlefieldTriggeredAbility(new DestroyTargetEffect()); Ability ability = new EntersBattlefieldTriggeredAbility(new DestroyTargetEffect(), true);
ability.addTarget(new TargetCreaturePermanent(filter)); ability.addTarget(new TargetCreaturePermanent(filter));
this.addAbility(ability); this.addAbility(ability);
} }