fix allowed version flags on Ep2 BB games; closes #619

This commit is contained in:
Martin Michelsen
2025-03-09 16:11:09 -07:00
parent 311af36632
commit 99ebf96cb0
+1 -1
View File
@@ -4402,7 +4402,7 @@ shared_ptr<Lobby> create_game_generic(
break;
case Episode::EP2:
for (Version v : ALL_VERSIONS) {
if (!is_v3(v) || is_ep3(v)) {
if (is_v1_or_v2(v) || is_ep3(v)) {
game->forbid_version(v);
}
}