From 67479da250b8ea16ca2cffd59a12192c18d44494 Mon Sep 17 00:00:00 2001 From: magenoxx Date: Wed, 22 Jun 2011 21:21:05 +0400 Subject: [PATCH] Made scopeColor equal to ComparisonScope.Any by default (more frequently used). This automatically fixed current bugs in Grand Architect, Honor Of The Pure, Bloodhall Ooze, some other. --- Mage/src/mage/filter/FilterObject.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/mage/filter/FilterObject.java b/Mage/src/mage/filter/FilterObject.java index 698b8f7508c..8275f5244be 100644 --- a/Mage/src/mage/filter/FilterObject.java +++ b/Mage/src/mage/filter/FilterObject.java @@ -54,7 +54,7 @@ public class FilterObject> ex protected boolean useColorless; protected boolean useColor; protected ObjectColor color; - protected ComparisonScope scopeColor = ComparisonScope.All; + protected ComparisonScope scopeColor = ComparisonScope.Any; protected boolean notColor; protected List name = new ArrayList(); protected boolean notName;