forked from External/mage
[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…
Add table
Add a link
Reference in a new issue