From 3b47dce117ae573585bd6666ad93d9c458cc6188 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Thu, 17 Jan 2019 09:02:08 -0500 Subject: [PATCH] fixed Price of Fame not receiving cost reduction --- Mage.Sets/src/mage/cards/p/PriceOfFame.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/p/PriceOfFame.java b/Mage.Sets/src/mage/cards/p/PriceOfFame.java index 194d35fe99..0aefe57301 100644 --- a/Mage.Sets/src/mage/cards/p/PriceOfFame.java +++ b/Mage.Sets/src/mage/cards/p/PriceOfFame.java @@ -12,7 +12,7 @@ import mage.constants.CardType; import mage.constants.SuperType; import mage.constants.Zone; import mage.filter.FilterPermanent; -import mage.filter.common.FilterControlledCreaturePermanent; +import mage.filter.common.FilterCreaturePermanent; import mage.filter.predicate.mageobject.SupertypePredicate; import mage.target.common.TargetCreaturePermanent; @@ -24,7 +24,7 @@ import java.util.UUID; public final class PriceOfFame extends CardImpl { private static final FilterPermanent filter - = new FilterControlledCreaturePermanent("a legendary creature"); + = new FilterCreaturePermanent("a legendary creature"); static { filter.add(new SupertypePredicate(SuperType.LEGENDARY));