From 645b79d07ecf6a7ba3fde9411d9bad3b37e3ddc5 Mon Sep 17 00:00:00 2001 From: xenohedron Date: Fri, 26 Jan 2024 22:00:41 -0500 Subject: [PATCH] fix typo --- .../effects/common/LoseLifeOpponentsYouGainLifeLostEffect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/main/java/mage/abilities/effects/common/LoseLifeOpponentsYouGainLifeLostEffect.java b/Mage/src/main/java/mage/abilities/effects/common/LoseLifeOpponentsYouGainLifeLostEffect.java index 6fa235c0e2b..e390384b404 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/LoseLifeOpponentsYouGainLifeLostEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/LoseLifeOpponentsYouGainLifeLostEffect.java @@ -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;