From 0ac85d93db47c6ec451e09ea9d135c7f26842afe Mon Sep 17 00:00:00 2001 From: jeffwadsworth Date: Tue, 9 Feb 2021 15:40:33 -0600 Subject: [PATCH] - Fixed #7535 --- Mage.Sets/src/mage/cards/m/MarwynTheNurturer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/m/MarwynTheNurturer.java b/Mage.Sets/src/mage/cards/m/MarwynTheNurturer.java index ad7301bedaa..4b0726a333c 100644 --- a/Mage.Sets/src/mage/cards/m/MarwynTheNurturer.java +++ b/Mage.Sets/src/mage/cards/m/MarwynTheNurturer.java @@ -13,7 +13,7 @@ import mage.constants.CardType; import mage.constants.SubType; import mage.constants.SuperType; import mage.counters.CounterType; -import mage.filter.common.FilterControlledCreaturePermanent; +import mage.filter.common.FilterControlledPermanent; import mage.filter.predicate.permanent.AnotherPredicate; /** @@ -21,7 +21,7 @@ import mage.filter.predicate.permanent.AnotherPredicate; */ public final class MarwynTheNurturer extends CardImpl { - private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("another Elf"); + private static final FilterControlledPermanent filter = new FilterControlledPermanent("another Elf"); static { filter.add(AnotherPredicate.instance);