fix [FIN] Hope Estheim (missing watcher)

This commit is contained in:
Susucre 2025-06-14 14:21:30 +02:00
parent 361c320890
commit d7bc249bfd

View file

@ -11,6 +11,7 @@ import mage.constants.CardType;
import mage.constants.SubType; import mage.constants.SubType;
import mage.constants.SuperType; import mage.constants.SuperType;
import mage.constants.TargetController; import mage.constants.TargetController;
import mage.watchers.common.PlayerGainedLifeWatcher;
import java.util.UUID; import java.util.UUID;
@ -34,7 +35,7 @@ public final class HopeEstheim extends CardImpl {
// At the beginning of your end step, each opponent mills X cards, where X is the amount of life you gained this turn. // At the beginning of your end step, each opponent mills X cards, where X is the amount of life you gained this turn.
this.addAbility(new BeginningOfEndStepTriggeredAbility(new MillCardsEachPlayerEffect( this.addAbility(new BeginningOfEndStepTriggeredAbility(new MillCardsEachPlayerEffect(
ControllerGainedLifeCount.instance, TargetController.OPPONENT ControllerGainedLifeCount.instance, TargetController.OPPONENT
))); )), new PlayerGainedLifeWatcher());
} }
private HopeEstheim(final HopeEstheim card) { private HopeEstheim(final HopeEstheim card) {