From 1cd91b3dd0fc7ff48e0ebef1fbf5b5e0aa766555 Mon Sep 17 00:00:00 2001 From: Christian Aldover Date: Mon, 4 Sep 2017 17:14:51 -0400 Subject: [PATCH] Update DeathlessAncient.java Updated notTarget from false to true --- Mage.Sets/src/mage/cards/d/DeathlessAncient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/d/DeathlessAncient.java b/Mage.Sets/src/mage/cards/d/DeathlessAncient.java index ef9e413d9e3..eb88cb44501 100644 --- a/Mage.Sets/src/mage/cards/d/DeathlessAncient.java +++ b/Mage.Sets/src/mage/cards/d/DeathlessAncient.java @@ -69,7 +69,7 @@ public class DeathlessAncient extends CardImpl { this.addAbility(FlyingAbility.getInstance()); // 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)))); }