From ef66c585701a43a7ed32ef9ed79cdfc0c352101b Mon Sep 17 00:00:00 2001 From: Neil Gentleman Date: Sat, 28 Nov 2015 17:05:06 -0800 Subject: [PATCH] fix Clutch of the Undercity targets permanents, not creatures --- Mage.Sets/src/mage/sets/ravnica/ClutchOfTheUndercity.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/ravnica/ClutchOfTheUndercity.java b/Mage.Sets/src/mage/sets/ravnica/ClutchOfTheUndercity.java index 0c0f2447614..e17da5e0726 100644 --- a/Mage.Sets/src/mage/sets/ravnica/ClutchOfTheUndercity.java +++ b/Mage.Sets/src/mage/sets/ravnica/ClutchOfTheUndercity.java @@ -35,7 +35,7 @@ import mage.abilities.effects.common.LoseLifeTargetControllerEffect; import mage.abilities.effects.common.ReturnToHandTargetEffect; import mage.abilities.keyword.TransmuteAbility; import mage.cards.CardImpl; -import mage.target.common.TargetCreaturePermanent; +import mage.target.TargetPermanent; /** * @author Loki @@ -50,7 +50,7 @@ public class ClutchOfTheUndercity extends CardImpl { // Return target permanent to its owner's hand. Its controller loses 3 life. this.getSpellAbility().addEffect(new ReturnToHandTargetEffect()); this.getSpellAbility().addEffect(new LoseLifeTargetControllerEffect(3)); - this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + this.getSpellAbility().addTarget(new TargetPermanent()); // Transmute {1}{U}{B} this.addAbility(new TransmuteAbility("{1}{U}{B}")); }