[CLB] Fix Bhaal, Lord of Murder indestructible condition flipped. For #9258.

This commit is contained in:
Alex Vasile 2022-07-16 23:37:39 -04:00
parent 7fe49f4bcc
commit f26f56736a

View file

@ -80,7 +80,7 @@ enum BhaalLordOfMurderCondition implements Condition {
public boolean apply(Game game, Ability source) { public boolean apply(Game game, Ability source) {
return Optional.ofNullable(game.getPlayer(source.getControllerId())) return Optional.ofNullable(game.getPlayer(source.getControllerId()))
.map(Player::getLife) .map(Player::getLife)
.map(x -> 2 * x >= game.getStartingLife()) .map(x -> 2 * x <= game.getStartingLife())
.orElse(false); .orElse(false);
} }
} }