From e1f0a42fe842c515e51370b7b225683b6b804ee9 Mon Sep 17 00:00:00 2001 From: magenoxx Date: Sat, 27 Aug 2011 16:28:10 +0400 Subject: [PATCH] Changed card type and card super type comparison scope to Any by default. --- Mage/src/mage/filter/FilterObject.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage/src/mage/filter/FilterObject.java b/Mage/src/mage/filter/FilterObject.java index 5f1d0bd73d1..efbc7b181bf 100644 --- a/Mage/src/mage/filter/FilterObject.java +++ b/Mage/src/mage/filter/FilterObject.java @@ -46,7 +46,7 @@ public class FilterObject> ex protected Abilities abilities; protected boolean notAbilities; protected List cardType = new ArrayList(); - protected ComparisonScope scopeCardType = ComparisonScope.All; + protected ComparisonScope scopeCardType = ComparisonScope.Any; protected List notCardTypeList = new ArrayList(); protected ComparisonScope notScopeCardType = ComparisonScope.Any; protected boolean notCardType; @@ -62,7 +62,7 @@ public class FilterObject> ex protected ComparisonScope scopeSubtype = ComparisonScope.All; protected boolean notSubtype; protected List supertype = new ArrayList(); - protected ComparisonScope scopeSupertype = ComparisonScope.All; + protected ComparisonScope scopeSupertype = ComparisonScope.Any; protected boolean notSupertype; protected int convertedManaCost; protected ComparisonType convertedManaCostComparison;