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:
Agetian
2020-07-22 13:13:55 +03:00
parent aae476f787
commit 093c4f8c11

View File

@@ -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;
}
}