mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
[CLB] Fixed Myrkul Indestructible condition (#9236)
This commit is contained in:
parent
33dd776b77
commit
f113a590b2
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ enum MyrkulLordOfBonesCondition 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