diff --git a/forge-game/src/main/java/forge/game/ability/effects/ManaEffect.java b/forge-game/src/main/java/forge/game/ability/effects/ManaEffect.java index 5e8e1df2f36..537d7011279 100644 --- a/forge-game/src/main/java/forge/game/ability/effects/ManaEffect.java +++ b/forge-game/src/main/java/forge/game/ability/effects/ManaEffect.java @@ -63,7 +63,7 @@ public class ManaEffect extends SpellAbilityEffect { boolean differentChoice = abMana.getOrigProduced().contains("Different"); ColorSet fullOptions = colorOptions; // Use specifyManaCombo if possible - if (colorsNeeded == null && amount > 1) { + if (colorsNeeded == null && amount > 1 && !sa.hasParam("TwoEach")) { Map choices = p.getController().specifyManaCombo(sa, colorOptions, amount, differentChoice); for (Map.Entry e : choices.entrySet()) { Byte chosenColor = e.getKey(); @@ -74,9 +74,6 @@ public class ManaEffect extends SpellAbilityEffect { choiceString.append(" "); } choiceString.append(choice); - if (sa.hasParam("TwoEach")) { - choiceString.append(" ").append(choice); - } --count; } }