mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Don't not an equals outside the equals.
This commit is contained in:
parent
e64e068b88
commit
c6e2dc100c
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ class MindlessNullEffect extends RestrictionEffect {
|
|||
|
||||
@Override
|
||||
public boolean canBlock(Permanent attacker, Permanent blocker, Ability source, Game game) {
|
||||
return !(game.getBattlefield().countAll(filter, source.getControllerId(), game) == 0);
|
||||
return game.getBattlefield().countAll(filter, source.getControllerId(), game) != 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue