* Fixed to the mana pool handling.

This commit is contained in:
LevelX2 2014-10-20 21:26:18 +02:00
parent 46e63861ec
commit 763023b550
5 changed files with 14 additions and 8 deletions

View file

@ -97,7 +97,7 @@ class ManaShortEffect extends OneShotEffect {
land.tap(game);
}
targetPlayer.getManaPool().emptyPool();
targetPlayer.getManaPool().emptyPool(game);
return true;
}

View file

@ -126,7 +126,7 @@ class PowerSinkCounterUnlessPaysEffect extends OneShotEffect {
}
// ...and empties his or her mana pool
player.getManaPool().emptyPool();
player.getManaPool().emptyPool(game);
}
return true;
}