diff --git a/Mage/src/mage/abilities/dynamicvalue/common/OpponentsLostLifeCount.java b/Mage/src/mage/abilities/dynamicvalue/common/OpponentsLostLifeCount.java index c32c6a1d9d..b097430014 100644 --- a/Mage/src/mage/abilities/dynamicvalue/common/OpponentsLostLifeCount.java +++ b/Mage/src/mage/abilities/dynamicvalue/common/OpponentsLostLifeCount.java @@ -53,7 +53,9 @@ public class OpponentsLostLifeCount implements DynamicValue { if (watcher != null && you != null) { int amountLifeLost = 0; for(UUID opponent: you.getInRange()) { - amountLifeLost += watcher.getLiveLost(opponent); + if (!opponent.equals(controllerId)) { + amountLifeLost += watcher.getLiveLost(opponent); + } } return amountLifeLost; }