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.\""))); }