Update DeathlessAncient.java

Updated notTarget from false to true
This commit is contained in:
Christian Aldover 2017-09-04 17:14:51 -04:00 committed by GitHub
parent 83e4d30601
commit 1cd91b3dd0

View file

@ -69,7 +69,7 @@ public class DeathlessAncient extends CardImpl {
this.addAbility(FlyingAbility.getInstance()); this.addAbility(FlyingAbility.getInstance());
// Tap three untapped Vampires you control: Return Deathless Ancient from your graveyard to your hand. // Tap three untapped Vampires you control: Return Deathless Ancient from your graveyard to your hand.
this.addAbility(new SimpleActivatedAbility(Zone.GRAVEYARD, new ReturnToHandSourceEffect(), new TapTargetCost(new TargetControlledPermanent(3, 3, filter, false)))); this.addAbility(new SimpleActivatedAbility(Zone.GRAVEYARD, new ReturnToHandSourceEffect(), new TapTargetCost(new TargetControlledPermanent(3, 3, filter, true))));
} }