mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +00:00
- Fix payment for the {C} shard (fixes the AI/auto payment tapping all lands when trying to find something to pay for {C})
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 & outColor) != 0 && shard.canBePaidWithManaOfColor(outColor)) {
|
||||
if ((line & outColor) != 0 && shard.canBePaidWithManaOfColor(color)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user