mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* Deactivated part of available mana generation to prevent looping.
This commit is contained in:
parent
cd5c4fe7b9
commit
b626356774
1 changed files with 2 additions and 1 deletions
|
@ -227,7 +227,8 @@ public class ManaOptions extends ArrayList<Mana> {
|
|||
}
|
||||
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)) {
|
||||
|
|
Loading…
Reference in a new issue