From 2f8d9a16de1df807cc6ee1f9576e5e571b1c03c1 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Thu, 15 Jan 2015 06:34:53 +0100 Subject: [PATCH] * Scourge of Valkas - Fixed use of missing Predicate. --- Mage.Sets/src/mage/sets/magic2014/ScourgeOfValkas.java | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Mage.Sets/src/mage/sets/magic2014/ScourgeOfValkas.java b/Mage.Sets/src/mage/sets/magic2014/ScourgeOfValkas.java index 44ed72de9d6..59d85ee9bbb 100644 --- a/Mage.Sets/src/mage/sets/magic2014/ScourgeOfValkas.java +++ b/Mage.Sets/src/mage/sets/magic2014/ScourgeOfValkas.java @@ -45,9 +45,7 @@ import mage.constants.Rarity; import mage.constants.Zone; import mage.filter.common.FilterControlledCreaturePermanent; import mage.filter.common.FilterCreaturePermanent; -import mage.filter.predicate.Predicates; import mage.filter.predicate.mageobject.SubtypePredicate; -import mage.filter.predicate.permanent.ThisPermanentPredicate; import mage.target.common.TargetCreatureOrPlayer; /** @@ -60,10 +58,7 @@ public class ScourgeOfValkas extends CardImpl { private final static FilterControlledCreaturePermanent filter2 = new FilterControlledCreaturePermanent("Dragons you control"); static { - filter.add(Predicates.or( - new ThisPermanentPredicate(), - new SubtypePredicate("Dragon") - )); + filter.add(new SubtypePredicate("Dragon")); filter2.add(new SubtypePredicate("Dragon")); }