diff --git a/Mage.Sets/src/mage/cards/i/InspireAwe.java b/Mage.Sets/src/mage/cards/i/InspireAwe.java index 8b3ed3be49c..95b55830e4e 100644 --- a/Mage.Sets/src/mage/cards/i/InspireAwe.java +++ b/Mage.Sets/src/mage/cards/i/InspireAwe.java @@ -7,6 +7,7 @@ import mage.cards.CardSetInfo; import mage.constants.CardType; import mage.constants.Duration; import mage.filter.common.FilterCreaturePermanent; +import mage.filter.predicate.Predicates; import mage.filter.predicate.mageobject.EnchantmentOrEnchantedPredicate; import java.util.UUID; @@ -16,11 +17,10 @@ import java.util.UUID; */ public final class InspireAwe extends CardImpl { - private static final FilterCreaturePermanent filter - = new FilterCreaturePermanent("enchanted creatures and enchantment creatures"); + private static final FilterCreaturePermanent filter = new FilterCreaturePermanent(); static { - filter.add(EnchantmentOrEnchantedPredicate.instance); + filter.add(Predicates.not(EnchantmentOrEnchantedPredicate.instance)); } public InspireAwe(UUID ownerId, CardSetInfo setInfo) { @@ -29,7 +29,8 @@ public final class InspireAwe extends CardImpl { // Prevent all combat damage that would be dealt this turn except by enchanted creatures and enchantment creatures. Scry 2. this.getSpellAbility().addEffect(new PreventAllDamageByAllPermanentsEffect( filter, Duration.EndOfTurn, true - )); + ).setText("Prevent all combat damage that would be dealt this turn " + + "except by enchanted creatures and enchantment creatures.")); this.getSpellAbility().addEffect(new ScryEffect(2)); }