This commit is contained in:
Oleg Agafonov 2020-07-05 09:47:00 +04:00
parent 7b57865071
commit 74ceac7322

View file

@ -136,6 +136,9 @@ class BenthicExplorersManaEffect extends ManaEffect {
@Override
public List<Mana> getNetMana(Game game, Ability source) {
List<Mana> netManas = new ArrayList<>();
if (game == null) {
return netManas;
}
Mana types = new Mana();
for (UUID opponentId : game.getOpponents(source.getControllerId())) {