[MKM] fix Living Conundrum equality check

This commit is contained in:
theelk801 2024-01-26 20:57:57 -05:00
parent 1a7edda03d
commit c362e51af3

View file

@ -115,6 +115,7 @@ enum LivingConundrumCondition implements Condition {
.ofNullable(game.getPlayer(source.getControllerId()))
.map(Player::getLibrary)
.map(Library::size)
.equals(0);
.map(i -> i == 0)
.orElse(false);
}
}