mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
fixed CARDNAME can't be blocked by white creatures. keyword. The logic was backwards.
This commit is contained in:
@@ -278,7 +278,7 @@ public class CombatUtil {
|
||||
|
||||
if (attacker.getKeyword().contains("CARDNAME can't be blocked by white creatures."))
|
||||
{
|
||||
if (!blocker.isWhite())
|
||||
if (blocker.isWhite())
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user