mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
[CLB] Fix Bhaal, Lord of Murder indestructible condition flipped. For #9258.
This commit is contained in:
parent
7fe49f4bcc
commit
f26f56736a
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ enum BhaalLordOfMurderCondition implements Condition {
|
|||
public boolean apply(Game game, Ability source) {
|
||||
return Optional.ofNullable(game.getPlayer(source.getControllerId()))
|
||||
.map(Player::getLife)
|
||||
.map(x -> 2 * x >= game.getStartingLife())
|
||||
.map(x -> 2 * x <= game.getStartingLife())
|
||||
.orElse(false);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue