From 76839ad0602fbbf97761b69a159f24dfbe7a5e51 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Sat, 1 May 2021 17:51:20 -0400 Subject: [PATCH] [STX] fixed Mage Duel cost reduction not applying --- Mage.Sets/src/mage/cards/m/MageDuel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/m/MageDuel.java b/Mage.Sets/src/mage/cards/m/MageDuel.java index e776bf15e5..deaaec9299 100644 --- a/Mage.Sets/src/mage/cards/m/MageDuel.java +++ b/Mage.Sets/src/mage/cards/m/MageDuel.java @@ -39,7 +39,7 @@ public final class MageDuel extends CardImpl { // This spell costs {2} less to cast if you've cast another instant or sorcery spell this turn. this.addAbility(new SimpleStaticAbility( Zone.ALL, new SpellCostReductionSourceEffect(2, MageDuelCondition.instance).setCanWorksOnStackOnly(true) - ).setRuleAtTheTop(true)); + ).setRuleAtTheTop(true), new SpellsCastWatcher()); // Target creature you control gets +1/+2 until end of turn. Then it fights target creature you don't control. this.getSpellAbility().addEffect(new BoostTargetEffect(1, 2));