Glissa the Traitor fix

Trigger wasn't optional
This commit is contained in:
L_J 2019-01-06 06:45:09 +01:00 committed by GitHub
parent 45b56d8891
commit 0b4a3c4547
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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