Fix cards

This commit is contained in:
tool4EvEr
2023-01-08 23:15:53 +01:00
parent f783d5a198
commit 58fcee689f
5 changed files with 8 additions and 8 deletions

View File

@@ -70,8 +70,7 @@ public class SpellAbilityPicker {
List<SpellAbility> all = ComputerUtilAbility.getSpellAbilities(cards, player);
List<SpellAbility> candidateSAs = ComputerUtilAbility.getOriginalAndAltCostAbilities(all, player);
int writeIndex = 0;
for (int i = 0; i < candidateSAs.size(); i++) {
SpellAbility sa = candidateSAs.get(i);
for (SpellAbility sa : candidateSAs) {
if (sa.isManaAbility()) {
continue;
}