Fixed possible NPE of AddManaOfAnyColorEffect.

This commit is contained in:
LevelX2 2014-06-20 20:44:10 +02:00
parent 10f6cbc2d5
commit 5f7784602a

View file

@ -68,8 +68,9 @@ public class AddManaOfAnyColorEffect extends ManaEffect {
@Override
public boolean apply(Game game, Ability source) {
ChoiceColor choice = (ChoiceColor) source.getChoices().get(0);
Player player = game.getPlayer(source.getControllerId());
if (choice == null || choice.getColor() == null) {
return false;
}
Mana mana = null;
if (choice.getColor().isBlack()) {
mana = Mana.BlackMana(amount);
@ -83,6 +84,7 @@ public class AddManaOfAnyColorEffect extends ManaEffect {
mana = Mana.WhiteMana(amount);
}
Player player = game.getPlayer(source.getControllerId());
if (player != null && mana != null) {
player.getManaPool().addMana(mana, game, source);
return true;