mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 04:39:18 -08:00
* Fixed to the mana pool handling.
This commit is contained in:
parent
46e63861ec
commit
763023b550
5 changed files with 14 additions and 8 deletions
|
|
@ -97,7 +97,7 @@ class ManaShortEffect extends OneShotEffect {
|
|||
land.tap(game);
|
||||
}
|
||||
|
||||
targetPlayer.getManaPool().emptyPool();
|
||||
targetPlayer.getManaPool().emptyPool(game);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -126,7 +126,7 @@ class PowerSinkCounterUnlessPaysEffect extends OneShotEffect {
|
|||
}
|
||||
|
||||
// ...and empties his or her mana pool
|
||||
player.getManaPool().emptyPool();
|
||||
player.getManaPool().emptyPool(game);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue