From b626356774aa3222d9dc44d09672b13035da5e95 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Thu, 12 Feb 2015 22:54:31 +0100 Subject: [PATCH] * Deactivated part of available mana generation to prevent looping. --- Mage/src/mage/abilities/mana/ManaOptions.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)) {