diff --git a/Mage/src/mage/abilities/mana/ManaOptions.java b/Mage/src/mage/abilities/mana/ManaOptions.java index 7f566e68b3..8f792df804 100644 --- a/Mage/src/mage/abilities/mana/ManaOptions.java +++ b/Mage/src/mage/abilities/mana/ManaOptions.java @@ -227,7 +227,8 @@ public class ManaOptions extends ArrayList { } boolean repeatable = false; if (addMana.getAny() == 1 && addMana.count() == 1 && onlyManaCosts) { - repeatable = true; // only replace to any with mana costs only will be repeated if able + // deactivated because it does cause loops TODO: Find reason + //repeatable = true; // only replace to any with mana costs only will be repeated if able } for (Mana mana: this) { while (mana.includesMana(cost)) {