* Fixed a problem with mana sources that blocked casting spells because their available mana calculation caused return of no available mana (Chrome Mox, Mox Amber #6698).

This commit is contained in:
LevelX2 2020-07-03 15:31:16 +02:00
parent e937999b96
commit 68f4d67600

View file

@ -47,7 +47,7 @@ public class ManaOptions extends ArrayList<Mana> {
if (!hasTapCost(abilities.get(0)) || checkTappedForManaReplacement(abilities.get(0), game, netManas.get(0))) {
addMana(netManas.get(0));
}
} else {
} else if (netManas.size() > 1) {
List<Mana> copy = copy();
this.clear();
// boolean hasTapCost = hasTapCost(abilities.get(0)); // needed if checkTappedForManaReplacement is reactivated