* Fixed a problem that tapped for mana event was sent twice (fixes problem of 2 created spirits for Forbidden Orchard).

This commit is contained in:
LevelX2 2018-06-10 10:28:00 +02:00
parent 984bc0871b
commit 99864ccf5b
4 changed files with 50 additions and 16 deletions

View file

@ -47,7 +47,6 @@ public class AddManaOfAnyColorEffect extends BasicManaEffect {
public boolean apply(Game game, Ability source) {
Player controller = game.getPlayer(source.getControllerId());
if (controller != null) {
checkToFirePossibleEvents(getMana(game, source), game, source);
controller.getManaPool().addMana(getMana(game, source), game, source);
return true;
}