From 2022f940fbc18bb50ee1977f7c7246853b2a3db2 Mon Sep 17 00:00:00 2001 From: xenohedron <12538125+xenohedron@users.noreply.github.com> Date: Wed, 14 May 2025 22:45:25 -0400 Subject: [PATCH] fix related to af527810 --- Mage.Sets/src/mage/cards/z/ZurgoThundersDecree.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/z/ZurgoThundersDecree.java b/Mage.Sets/src/mage/cards/z/ZurgoThundersDecree.java index 9cc974582c1..27ce789f62c 100644 --- a/Mage.Sets/src/mage/cards/z/ZurgoThundersDecree.java +++ b/Mage.Sets/src/mage/cards/z/ZurgoThundersDecree.java @@ -12,7 +12,6 @@ import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.*; import mage.filter.FilterPermanent; -import mage.filter.StaticFilters; import mage.filter.predicate.permanent.TokenPredicate; import java.util.UUID; @@ -45,7 +44,7 @@ public final class ZurgoThundersDecree extends CardImpl { // During your end step, Warrior tokens you control have "This token can't be sacrificed." this.addAbility(new SimpleStaticAbility(new ConditionalContinuousEffect(new GainAbilityControlledEffect( new SimpleStaticAbility(new CantBeSacrificedSourceEffect()), - Duration.WhileOnBattlefield, StaticFilters.FILTER_PERMANENTS + Duration.WhileOnBattlefield, filter ), condition, "during your end step, Warrior tokens you control have \"This token can't be sacrificed.\""))); }