mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
fix typo
This commit is contained in:
parent
ce15e4d957
commit
645b79d07e
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ public class LoseLifeOpponentsYouGainLifeLostEffect extends OneShotEffect {
|
|||
.filter(Objects::nonNull)
|
||||
.mapToInt(opponent -> opponent.loseLife(lifeToLose, game, source, false))
|
||||
.sum();
|
||||
if (totalLifeLost > 1) {
|
||||
if (totalLifeLost > 0) {
|
||||
controller.gainLife(totalLifeLost, game, source);
|
||||
}
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue