diff --git a/Mage.Sets/src/mage/sets/saviorsofkamigawa/AEtherShockwave.java b/Mage.Sets/src/mage/sets/saviorsofkamigawa/AEtherShockwave.java index 408421be90..14b5f5828b 100644 --- a/Mage.Sets/src/mage/sets/saviorsofkamigawa/AEtherShockwave.java +++ b/Mage.Sets/src/mage/sets/saviorsofkamigawa/AEtherShockwave.java @@ -43,8 +43,8 @@ import mage.filter.predicate.mageobject.SubtypePredicate; */ public class AEtherShockwave extends CardImpl { - private static final FilterCreaturePermanent filterSpirit = new FilterCreaturePermanent("all Spirits"); - private static final FilterCreaturePermanent filterNonSpirit = new FilterCreaturePermanent("all non-Spirit creatures"); + private static final FilterCreaturePermanent filterSpirit = new FilterCreaturePermanent("Spirits"); + private static final FilterCreaturePermanent filterNonSpirit = new FilterCreaturePermanent("non-Spirit creatures"); static { filterSpirit.add(new SubtypePredicate("Spirit")); filterNonSpirit.add(Predicates.not(new SubtypePredicate("Spirit")));