From 23ad5ccae7619df637671c41894abe32034d629b Mon Sep 17 00:00:00 2001 From: Susucre <34709007+Susucre@users.noreply.github.com> Date: Mon, 4 Sep 2023 06:36:07 +0200 Subject: [PATCH] [UDS] Tethered Griffin - fixed wrong rules text (#11108) --- Mage.Sets/src/mage/cards/t/TetheredGriffin.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/t/TetheredGriffin.java b/Mage.Sets/src/mage/cards/t/TetheredGriffin.java index d00fb61b4d8..227e23113dc 100644 --- a/Mage.Sets/src/mage/cards/t/TetheredGriffin.java +++ b/Mage.Sets/src/mage/cards/t/TetheredGriffin.java @@ -11,6 +11,7 @@ import mage.constants.CardType; import mage.constants.SubType; import mage.constants.ComparisonType; import mage.filter.StaticFilters; +import mage.filter.common.FilterEnchantmentPermanent; import java.util.UUID; @@ -20,6 +21,9 @@ import java.util.UUID; */ public final class TetheredGriffin extends CardImpl { + private static final FilterEnchantmentPermanent filter + = new FilterEnchantmentPermanent("no enchantments"); + public TetheredGriffin(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{W}"); this.subtype.add(SubType.GRIFFIN); @@ -31,7 +35,7 @@ public final class TetheredGriffin extends CardImpl { // When you control no enchantments, sacrifice Tethered Griffin. this.addAbility(new ControlsPermanentsControllerTriggeredAbility( - StaticFilters.FILTER_PERMANENT_ENCHANTMENT, ComparisonType.EQUAL_TO, 0, + filter, ComparisonType.EQUAL_TO, 0, new SacrificeSourceEffect())); }