mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Grammar Fixes
Deleted extraneous "target" in filter string causing "...Target target..." to appear in tooltips in-game.
This commit is contained in:
parent
c36987bd39
commit
9bceda0e0e
3 changed files with 3 additions and 3 deletions
|
@ -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));
|
||||
|
|
|
@ -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)));
|
||||
|
|
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue