This commit is contained in:
xenohedron 2024-01-26 22:00:41 -05:00
parent ce15e4d957
commit 645b79d07e

View file

@ -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;