fixed Price of Fame not receiving cost reduction

This commit is contained in:
Evan Kranzler 2019-01-17 09:02:08 -05:00
parent 7c2f55eda0
commit 3b47dce117

View file

@ -12,7 +12,7 @@ import mage.constants.CardType;
import mage.constants.SuperType; import mage.constants.SuperType;
import mage.constants.Zone; import mage.constants.Zone;
import mage.filter.FilterPermanent; import mage.filter.FilterPermanent;
import mage.filter.common.FilterControlledCreaturePermanent; import mage.filter.common.FilterCreaturePermanent;
import mage.filter.predicate.mageobject.SupertypePredicate; import mage.filter.predicate.mageobject.SupertypePredicate;
import mage.target.common.TargetCreaturePermanent; import mage.target.common.TargetCreaturePermanent;
@ -24,7 +24,7 @@ import java.util.UUID;
public final class PriceOfFame extends CardImpl { public final class PriceOfFame extends CardImpl {
private static final FilterPermanent filter private static final FilterPermanent filter
= new FilterControlledCreaturePermanent("a legendary creature"); = new FilterCreaturePermanent("a legendary creature");
static { static {
filter.add(new SupertypePredicate(SuperType.LEGENDARY)); filter.add(new SupertypePredicate(SuperType.LEGENDARY));