From a3468e0989c8d6c7dfb8f97a24f18b81c45cbf34 Mon Sep 17 00:00:00 2001 From: grimreap124 <19590931+grimreap124@users.noreply.github.com> Date: Tue, 4 Jun 2024 20:01:21 +1000 Subject: [PATCH] Update HourglassOfTheLost.java --- Mage.Sets/src/mage/cards/h/HourglassOfTheLost.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/h/HourglassOfTheLost.java b/Mage.Sets/src/mage/cards/h/HourglassOfTheLost.java index 879d90d5bce..60e57a33da5 100644 --- a/Mage.Sets/src/mage/cards/h/HourglassOfTheLost.java +++ b/Mage.Sets/src/mage/cards/h/HourglassOfTheLost.java @@ -48,7 +48,8 @@ public final class HourglassOfTheLost extends CardImpl { ability.addEffect(new AddCountersSourceEffect(CounterType.TIME.createInstance())); this.addAbility(ability); // {T}, Remove X time counters from Hourglass of the Lost and exile it: Return each nonland permanent card with mana value X from your graveyard to the battlefield. Activate only as a sorcery. - Ability returnAbility = new ActivateAsSorceryActivatedAbility(new HourglassOfTheLostEffect(), new TapSourceCost()); + Ability returnAbility = new ActivateAsSorceryActivatedAbility(new HourglassOfTheLostEffect(), null); + returnAbility.addCost(new TapSourceCost()); returnAbility.addCost(new RemoveVariableCountersSourceCost(CounterType.TIME)); returnAbility.addCost(new ExileSourceCost().setText("and exile it")); this.addAbility(returnAbility);