mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Gilt-Leaf Winnower - Fixed that the triggered ability was not optional.
This commit is contained in:
parent
198a32102d
commit
5739fd7a57
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ public class GiltLeafWinnower extends CardImpl {
|
|||
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.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new DestroyTargetEffect());
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new DestroyTargetEffect(), true);
|
||||
ability.addTarget(new TargetCreaturePermanent(filter));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue