fixed CARDNAME can't be blocked by white creatures. keyword. The logic was backwards.

This commit is contained in:
jendave
2011-08-06 13:31:04 +00:00
parent 9afd253fb0
commit 46872d5743

View File

@@ -278,7 +278,7 @@ public class CombatUtil {
if (attacker.getKeyword().contains("CARDNAME can't be blocked by white creatures.")) if (attacker.getKeyword().contains("CARDNAME can't be blocked by white creatures."))
{ {
if (!blocker.isWhite()) if (blocker.isWhite())
return false; return false;
} }