From 84757f132c6aee1db748dbbd8a23d26642e5f1d3 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 20 Sep 2015 08:47:04 +0200 Subject: [PATCH] * Horribly Awry - Fixed that it also could target non creature spells. --- Mage.Sets/src/mage/sets/battleforzendikar/HorriblyAwry.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/battleforzendikar/HorriblyAwry.java b/Mage.Sets/src/mage/sets/battleforzendikar/HorriblyAwry.java index 793c186d79..40d9e1f310 100644 --- a/Mage.Sets/src/mage/sets/battleforzendikar/HorriblyAwry.java +++ b/Mage.Sets/src/mage/sets/battleforzendikar/HorriblyAwry.java @@ -36,7 +36,7 @@ import mage.constants.CardType; import mage.constants.Rarity; import mage.constants.Zone; import mage.filter.Filter; -import mage.filter.FilterSpell; +import mage.filter.common.FilterCreatureSpell; import mage.filter.predicate.mageobject.ConvertedManaCostPredicate; import mage.target.TargetSpell; @@ -46,7 +46,7 @@ import mage.target.TargetSpell; */ public class HorriblyAwry extends CardImpl { - private static final FilterSpell filter = new FilterSpell("spell with converted mana cost 4 or less"); + private static final FilterCreatureSpell filter = new FilterCreatureSpell("creature spell with converted mana cost 4 or less"); static { filter.add(new ConvertedManaCostPredicate(Filter.ComparisonType.LessThan, 5));