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;