Grammar Fixes

Deleted extraneous "target" in filter string causing "...Target
target..." to appear in tooltips in-game.
This commit is contained in:
Poddo 2015-12-07 00:29:01 -06:00
parent c36987bd39
commit 9bceda0e0e
3 changed files with 3 additions and 3 deletions

View file

@ -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));

View file

@ -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)));

View file

@ -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());