* Vorinclex, Voice of Hunger - FIxed a bug that id did not work correctly with some conditional land mana sources (e.g. Gemstone Caverns).

This commit is contained in:
LevelX2 2017-01-14 12:25:07 +01:00
parent 6ffa1dc146
commit 2d13deff3a

View file

@ -96,6 +96,7 @@ public class ConditionalManaEffect extends ManaEffect {
} }
if (mana != null) { if (mana != null) {
checkToFirePossibleEvents(mana, game, source);
controller.getManaPool().addMana(mana, game, source); controller.getManaPool().addMana(mana, game, source);
} }
return true; return true;
@ -114,9 +115,6 @@ public class ConditionalManaEffect extends ManaEffect {
} else if (otherwiseEffect != null) { } else if (otherwiseEffect != null) {
mana = otherwiseEffect.getMana(); mana = otherwiseEffect.getMana();
} }
if (mana != null) {
checkToFirePossibleEvents(mana, game, source);
}
return mana; return mana;
} }
} }