mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
- Added a FIXME line for the colorless mana test in ComputerUtilMana.java.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user