* Form of the Dragon - Fixed tooltip text.

This commit is contained in:
LevelX2 2016-01-16 10:08:06 +01:00
parent 8a50dacc9f
commit e2c8b8f583
2 changed files with 3 additions and 3 deletions

View file

@ -56,7 +56,7 @@ import mage.target.common.TargetCreatureOrPlayer;
*/
public class FormOfTheDragon extends CardImpl {
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Creatures without flying");
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creatures without flying");
static {
filter.add(Predicates.not(new AbilityPredicate(FlyingAbility.class)));

View file

@ -45,13 +45,13 @@ public class CantAttackYouAllEffect extends RestrictionEffect {
private final FilterCreaturePermanent filterAttacker;
public CantAttackYouAllEffect(Duration duration) {
this(duration, new FilterCreaturePermanent());
this(duration, new FilterCreaturePermanent("creatures"));
}
public CantAttackYouAllEffect(Duration duration, FilterCreaturePermanent filter) {
super(duration, Outcome.Benefit);
this.filterAttacker = filter;
staticText = "Creatures can't attack you";
staticText = filterAttacker.getMessage() + " can't attack you";
}
CantAttackYouAllEffect(final CantAttackYouAllEffect effect) {