diff --git a/Mage.Sets/src/mage/cards/b/BhaalLordOfMurder.java b/Mage.Sets/src/mage/cards/b/BhaalLordOfMurder.java index 58779d7fe2..54918f7ac6 100644 --- a/Mage.Sets/src/mage/cards/b/BhaalLordOfMurder.java +++ b/Mage.Sets/src/mage/cards/b/BhaalLordOfMurder.java @@ -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); } } \ No newline at end of file