From 1c5f0c8b7fdfa8811aa85d25b944b8022242f1d5 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 14 Jan 2014 08:43:58 +0100 Subject: [PATCH] Fixed syntax error of Opposition. --- Mage.Sets/src/mage/sets/seventhedition/Opposition.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/seventhedition/Opposition.java b/Mage.Sets/src/mage/sets/seventhedition/Opposition.java index deaca29583..22f639e73c 100644 --- a/Mage.Sets/src/mage/sets/seventhedition/Opposition.java +++ b/Mage.Sets/src/mage/sets/seventhedition/Opposition.java @@ -54,7 +54,7 @@ public class Opposition extends CardImpl { private static final FilterPermanent artifactcreatureorland = new FilterPermanent("artifact, creature, or land"); static { - filter.add(Predicates.or( + artifactcreatureorland.add(Predicates.or( new CardTypePredicate(CardType.ARTIFACT), new CardTypePredicate(CardType.CREATURE), new CardTypePredicate(CardType.LAND))); @@ -63,7 +63,7 @@ public class Opposition extends CardImpl { private static final FilterControlledCreaturePermanent untappedcreatureyoucontrol = new FilterControlledCreaturePermanent("untapped creature you control"); static { - filter.add(Predicates.not(new TappedPredicate())); + untappedcreatureyoucontrol.add(Predicates.not(new TappedPredicate())); } public Opposition(UUID ownerId) {