- Added a FIXME line for the colorless mana test in ComputerUtilMana.java.

This commit is contained in:
Agetian
2016-01-15 05:53:34 +00:00
parent 1f4743aa4f
commit 5b023b2c9b

View File

@@ -1097,7 +1097,8 @@ public class ComputerUtilMana {
} else if (producesAnyColor) {
anyColorManaSources.add(card);
} else if (usableManaAbilities == 1) {
if (manaAbilities.get(0).getManaPart().mana().equals("1") || manaAbilities.get(0).getManaPart().mana().equals("C")) {
// FIXME: do we still need to test against "1" for colorless mana or are shards like that always identified as "C" by now?
if (manaAbilities.get(0).getManaPart().mana().equals("C") || manaAbilities.get(0).getManaPart().mana().equals("1")) {
colorlessManaSources.add(card);
} else {
oneManaSources.add(card);