diff --git a/Mage.Sets/src/mage/cards/m/MyrkulLordOfBones.java b/Mage.Sets/src/mage/cards/m/MyrkulLordOfBones.java index 2fd39f38742..b419a710295 100644 --- a/Mage.Sets/src/mage/cards/m/MyrkulLordOfBones.java +++ b/Mage.Sets/src/mage/cards/m/MyrkulLordOfBones.java @@ -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); } }