From e3f46452584b135d3de8b12b9a69716f5c06dc4f Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Thu, 11 Dec 2014 23:49:15 +0100 Subject: [PATCH] * Fixed a bug that prevented some mana abilities to produce mana (Miraris Wake, Keeper Of Progenitus, Heartbeat of Spring, Dictate of Karametra, Vorinclex Voice of Hunger, Zhur-Taa Ancient). --- .../AddManaOfAnyColorTargetCanProduceEffect.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Mage/src/mage/abilities/effects/common/AddManaOfAnyColorTargetCanProduceEffect.java b/Mage/src/mage/abilities/effects/common/AddManaOfAnyColorTargetCanProduceEffect.java index 8783f9c4db2..36a5c4e82be 100644 --- a/Mage/src/mage/abilities/effects/common/AddManaOfAnyColorTargetCanProduceEffect.java +++ b/Mage/src/mage/abilities/effects/common/AddManaOfAnyColorTargetCanProduceEffect.java @@ -100,22 +100,22 @@ public class AddManaOfAnyColorTargetCanProduceEffect extends ManaEffect { switch (choice.getChoice()) { case "Black": newMana.setBlack(1); - return true; + break; case "Blue": newMana.setBlue(1); - return true; + break; case "Red": newMana.setRed(1); - return true; + break; case "Green": newMana.setGreen(1); - return true; + break; case "White": newMana.setWhite(1); - return true; + break; case "Colorless": newMana.setColorless(1); - return true; + break; } controller.getManaPool().addMana(newMana, game, source); checkToFirePossibleEvents(newMana, game, source);