From b7addc8afcad3de8f2e7988c78fca81c19db373d Mon Sep 17 00:00:00 2001 From: theelk801 Date: Mon, 14 Apr 2025 10:52:20 -0400 Subject: [PATCH] [TDM] fix Dispelling Exhale not targeting --- Mage.Sets/src/mage/cards/d/DispellingExhale.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mage.Sets/src/mage/cards/d/DispellingExhale.java b/Mage.Sets/src/mage/cards/d/DispellingExhale.java index 5125df363e4..074f5564df7 100644 --- a/Mage.Sets/src/mage/cards/d/DispellingExhale.java +++ b/Mage.Sets/src/mage/cards/d/DispellingExhale.java @@ -8,6 +8,7 @@ import mage.abilities.keyword.BeholdDragonAbility; import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.CardType; +import mage.target.TargetSpell; import java.util.UUID; @@ -29,6 +30,7 @@ public final class DispellingExhale extends CardImpl { BeheldDragonCondition.instance, "counter target spell unless its controller pays {2}. " + "If a Dragon was beheld, counter that spell unless its controller pays {4} instead" )); + this.getSpellAbility().addTarget(new TargetSpell()); } private DispellingExhale(final DispellingExhale card) {