From 5c59b60e54f897fc23449d408075e085e543874f Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Wed, 16 Sep 2020 17:27:55 -0400 Subject: [PATCH] [ZNR] fixed Throne of Makindi generating too much mana (#7046) --- Mage.Sets/src/mage/cards/t/ThroneOfMakindi.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/t/ThroneOfMakindi.java b/Mage.Sets/src/mage/cards/t/ThroneOfMakindi.java index a36b49df50..a755ba2768 100644 --- a/Mage.Sets/src/mage/cards/t/ThroneOfMakindi.java +++ b/Mage.Sets/src/mage/cards/t/ThroneOfMakindi.java @@ -39,7 +39,7 @@ public final class ThroneOfMakindi extends CardImpl { // {T}, Remove a charge counter from Throne of Makindi: Add two mana of any one color. Spend this mana only to cast kicked spells. ability = new ConditionalAnyColorManaAbility( - new TapSourceCost(), 3, new ThroneOfMakindiManaBuilder(), true + new TapSourceCost(), 2, new ThroneOfMakindiManaBuilder(), true ); ability.addCost(new RemoveCountersSourceCost(CounterType.CHARGE.createInstance())); this.addAbility(ability);