mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
Glissa the Traitor fix
Trigger wasn't optional
This commit is contained in:
parent
45b56d8891
commit
0b4a3c4547
1 changed files with 3 additions and 3 deletions
|
@ -64,7 +64,7 @@ class GlissaTheTraitorTriggeredAbility extends TriggeredAbilityImpl {
|
||||||
}
|
}
|
||||||
|
|
||||||
GlissaTheTraitorTriggeredAbility() {
|
GlissaTheTraitorTriggeredAbility() {
|
||||||
super(Zone.BATTLEFIELD, new ReturnToHandTargetEffect());
|
super(Zone.BATTLEFIELD, new ReturnToHandTargetEffect(), true);
|
||||||
this.addTarget(new TargetCardInYourGraveyard(filter));
|
this.addTarget(new TargetCardInYourGraveyard(filter));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,6 +95,6 @@ class GlissaTheTraitorTriggeredAbility extends TriggeredAbilityImpl {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getRule() {
|
public String getRule() {
|
||||||
return "Whenever a creature an opponent controls is put into a graveyard from the battlefield, you may " + super.getRule();
|
return "Whenever a creature an opponent controls is put into a graveyard from the battlefield, " + super.getRule();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue