From 7c6e1d026d8f68ca9ebc548021c6dde68ca875ff Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Fri, 16 Aug 2013 10:20:00 +0200 Subject: [PATCH] Fixed tooltip text of AEther Shockwave. --- .../src/mage/sets/saviorsofkamigawa/AEtherShockwave.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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")));