mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
parent
20db2f0602
commit
a445142d39
2 changed files with 56 additions and 2 deletions
|
|
@ -1774,8 +1774,9 @@ public final class CardUtil {
|
|||
// Waiting on actual ruling of Ashiok, Wicked Manipulator.
|
||||
return true;
|
||||
}
|
||||
if (player.loseLife(lifeToPay, game, source, false) >= lifeToPay) {
|
||||
game.fireEvent(GameEvent.getEvent(GameEvent.EventType.LIFE_PAID, player.getId(), source, player.getId(), lifeToPay));
|
||||
int lostLife = player.loseLife(lifeToPay, game, source, false);
|
||||
if (lostLife > 0) {
|
||||
game.fireEvent(GameEvent.getEvent(GameEvent.EventType.LIFE_PAID, player.getId(), source, player.getId(), lostLife));
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue