diff --git a/Mage/src/mage/abilities/effects/common/AddManaOfAnyColorEffect.java b/Mage/src/mage/abilities/effects/common/AddManaOfAnyColorEffect.java index 228a80c93e..55ff35d170 100644 --- a/Mage/src/mage/abilities/effects/common/AddManaOfAnyColorEffect.java +++ b/Mage/src/mage/abilities/effects/common/AddManaOfAnyColorEffect.java @@ -72,6 +72,9 @@ public class AddManaOfAnyColorEffect extends BasicManaEffect { ChoiceColor choice = new ChoiceColor(false); if (controller.choose(outcome, choice, game)) { + if (choice.getColor() == null) { + return false; // it happenes, don't know how + } Mana createdMana = null; if (choice.getColor().isBlack()) { createdMana = Mana.BlackMana(amount);