mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
Revert "- Attempt to both fix the {C} mana payment *and* not break the "may pay with mana of any color" at once", doesn't work.
This commit is contained in:
@@ -354,7 +354,7 @@ public class ManaPool extends ManaConversionMatrix implements Iterable<Mana> {
|
||||
byte line = getPossibleColorUses(color);
|
||||
|
||||
for(byte outColor : ManaAtom.MANATYPES) {
|
||||
if ((line & color) != 0 && shard.canBePaidWithManaOfColor(outColor)) {
|
||||
if ((line & outColor) != 0 && shard.canBePaidWithManaOfColor(color)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user