diff --git a/Mage.Sets/src/mage/sets/antiquities/ArgivianBlacksmith.java b/Mage.Sets/src/mage/sets/antiquities/ArgivianBlacksmith.java index c789f94e247..2897eaaaeee 100644 --- a/Mage.Sets/src/mage/sets/antiquities/ArgivianBlacksmith.java +++ b/Mage.Sets/src/mage/sets/antiquities/ArgivianBlacksmith.java @@ -48,7 +48,7 @@ import mage.target.TargetPermanent; */ public class ArgivianBlacksmith extends CardImpl { - private static final FilterPermanent filter = new FilterPermanent("target artifact creature"); + private static final FilterPermanent filter = new FilterPermanent("artifact creature"); static { filter.add(new CardTypePredicate(CardType.ARTIFACT)); diff --git a/Mage.Sets/src/mage/sets/dragonsoftarkir/MonasteryLoremaster.java b/Mage.Sets/src/mage/sets/dragonsoftarkir/MonasteryLoremaster.java index 882ee2bb04f..9557b42fbb6 100644 --- a/Mage.Sets/src/mage/sets/dragonsoftarkir/MonasteryLoremaster.java +++ b/Mage.Sets/src/mage/sets/dragonsoftarkir/MonasteryLoremaster.java @@ -48,7 +48,7 @@ import mage.target.common.TargetCardInYourGraveyard; */ public class MonasteryLoremaster extends CardImpl { - private static final FilterCard filter = new FilterCard("target noncreature, nonland card from your graveyard"); + private static final FilterCard filter = new FilterCard("noncreature, nonland card from your graveyard"); static { filter.add(Predicates.not(new CardTypePredicate(CardType.CREATURE))); diff --git a/Mage.Sets/src/mage/sets/planarchaos/SerendibSorcerer.java b/Mage.Sets/src/mage/sets/planarchaos/SerendibSorcerer.java index acc479365bf..03e51e65e2b 100644 --- a/Mage.Sets/src/mage/sets/planarchaos/SerendibSorcerer.java +++ b/Mage.Sets/src/mage/sets/planarchaos/SerendibSorcerer.java @@ -48,7 +48,7 @@ import mage.target.common.TargetCreaturePermanent; */ public class SerendibSorcerer extends CardImpl { - private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("target creature other than {this}"); + private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creature other than {this}"); static { filter.add(new AnotherPredicate());