From 2c60990e467c40560d4324af2a890447fd594462 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 18 Sep 2016 18:21:16 +0200 Subject: [PATCH] * Revolutionary Rebuff - Fixed that the ommit of artifact spells did not work. --- Mage.Sets/src/mage/sets/kaladesh/RevolutionaryRebuff.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/sets/kaladesh/RevolutionaryRebuff.java b/Mage.Sets/src/mage/sets/kaladesh/RevolutionaryRebuff.java index 77c2276687..7802cdc61b 100644 --- a/Mage.Sets/src/mage/sets/kaladesh/RevolutionaryRebuff.java +++ b/Mage.Sets/src/mage/sets/kaladesh/RevolutionaryRebuff.java @@ -35,7 +35,7 @@ import mage.constants.CardType; import mage.constants.Rarity; import mage.filter.FilterSpell; import mage.filter.predicate.Predicates; -import mage.filter.predicate.mageobject.SubtypePredicate; +import mage.filter.predicate.mageobject.CardTypePredicate; import mage.target.TargetSpell; /** @@ -50,8 +50,7 @@ public class RevolutionaryRebuff extends CardImpl { // Counter target nonartifact spell unless its controller pays 2. FilterSpell filter = new FilterSpell(); - filter.add(Predicates.not(new SubtypePredicate("Artifact"))); - + filter.add(Predicates.not(new CardTypePredicate(CardType.ARTIFACT))); this.getSpellAbility().addTarget(new TargetSpell(filter)); this.getSpellAbility().addEffect(new CounterUnlessPaysEffect(new GenericManaCost(2))); }