1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-09 01:01:06 -09:00

fixed BBD/CMR duals counting opponents incorrectly (fixes )

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;
}