From 7020303a98e9584e45c16041eb5c7984a000e6e4 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Fri, 11 Sep 2020 11:26:18 -0400 Subject: [PATCH] [ZNR] fixed missing target for Glacial Grasp (#7046) --- Mage.Sets/src/mage/cards/g/GlacialGrasp.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mage.Sets/src/mage/cards/g/GlacialGrasp.java b/Mage.Sets/src/mage/cards/g/GlacialGrasp.java index d4dbd8f657..b4f5a154be 100644 --- a/Mage.Sets/src/mage/cards/g/GlacialGrasp.java +++ b/Mage.Sets/src/mage/cards/g/GlacialGrasp.java @@ -11,6 +11,7 @@ import mage.constants.Outcome; import mage.game.Game; import mage.game.permanent.Permanent; import mage.players.Player; +import mage.target.common.TargetCreaturePermanent; import java.util.UUID; @@ -24,6 +25,7 @@ public final class GlacialGrasp extends CardImpl { // Tap target creature. Its controller mills two cards. That creature doesn't untap during its controller's next untap step. this.getSpellAbility().addEffect(new GlacialGraspEffect()); + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); // Draw a card. this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));