* Fixed calcultion of available mana for Goblin Clearcutter, Seton Krosan Protector, Urza, Lord High Artificer, Heritage Druid, Birchlore Ranger and Grand architect.

This commit is contained in:
LevelX2 2020-07-11 16:43:38 +02:00
parent 587f05dea4
commit 81e5650972
9 changed files with 283 additions and 51 deletions

View file

@ -55,7 +55,7 @@ public class SimpleManaAbility extends ActivatedManaAbilityImpl {
if (predictable) {
return super.getNetMana(game);
}
return new ArrayList<Mana>(netMana);
return new ArrayList<>(netMana);
}
}