From ac322a11cdfae79b489202d3616e98ccf7b96bb8 Mon Sep 17 00:00:00 2001 From: Grath <1895280+Grath@users.noreply.github.com> Date: Sun, 1 Sep 2024 14:07:17 -0400 Subject: [PATCH] Fix Dazzling Denial to actually target a spell to counter. --- Mage.Sets/src/mage/cards/d/DazzlingDenial.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mage.Sets/src/mage/cards/d/DazzlingDenial.java b/Mage.Sets/src/mage/cards/d/DazzlingDenial.java index 8d01050996f..268e33cf989 100644 --- a/Mage.Sets/src/mage/cards/d/DazzlingDenial.java +++ b/Mage.Sets/src/mage/cards/d/DazzlingDenial.java @@ -12,6 +12,7 @@ import mage.cards.CardSetInfo; import mage.constants.CardType; import mage.constants.SubType; import mage.filter.common.FilterControlledPermanent; +import mage.target.TargetSpell; import java.util.UUID; @@ -27,6 +28,7 @@ public final class DazzlingDenial extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{U}"); // Counter target spell unless its controller pays {2}. If you control a Bird, counter that spell unless its controller pays {4} instead. + this.getSpellAbility().addTarget(new TargetSpell()); this.getSpellAbility().addEffect(new ConditionalOneShotEffect( new CounterUnlessPaysEffect(new GenericManaCost(4)), new CounterUnlessPaysEffect(new GenericManaCost(2)),