fixed BBD/CMR duals counting opponents incorrectly (fixes #8796)

This commit is contained in:
Evan Kranzler 2022-03-28 18:28:21 -04:00
parent 124bd261e9
commit 21cf9369ab

View file

@ -19,6 +19,7 @@ public enum OneOpponentCondition implements Condition {
.stream()
.map(game::getPlayer)
.filter(Objects::nonNull)
.filter(player -> !player.hasLost())
.count() <= 1;
}