From 4aedf44bdf3b8368fd67ce373637e618e43fc3ed Mon Sep 17 00:00:00 2001 From: PurpleCrowbar <26198472+PurpleCrowbar@users.noreply.github.com> Date: Sat, 28 Jan 2023 16:55:58 +0000 Subject: [PATCH] Fix Relic of Legends targeting --- Mage.Sets/src/mage/cards/r/RelicOfLegends.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/r/RelicOfLegends.java b/Mage.Sets/src/mage/cards/r/RelicOfLegends.java index 036466b3f04..9a3f17fa7c4 100644 --- a/Mage.Sets/src/mage/cards/r/RelicOfLegends.java +++ b/Mage.Sets/src/mage/cards/r/RelicOfLegends.java @@ -6,6 +6,7 @@ import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.CardType; import mage.constants.SuperType; +import mage.filter.common.FilterControlledCreaturePermanent; import mage.filter.common.FilterControlledPermanent; import mage.filter.predicate.permanent.TappedPredicate; import mage.target.common.TargetControlledPermanent; @@ -18,7 +19,7 @@ import java.util.UUID; public final class RelicOfLegends extends CardImpl { private static final FilterControlledPermanent filter - = new FilterControlledPermanent("untapped legendary creature you control"); + = new FilterControlledCreaturePermanent("untapped legendary creature you control"); static { filter.add(TappedPredicate.UNTAPPED);