mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
fixed Price of Fame not receiving cost reduction
This commit is contained in:
parent
7c2f55eda0
commit
3b47dce117
1 changed files with 2 additions and 2 deletions
|
@ -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));
|
||||||
|
|
Loading…
Reference in a new issue