From 99ebf96cb03d4f8634989ac4831f3ef9cb1216eb Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sun, 9 Mar 2025 16:11:09 -0700 Subject: [PATCH] fix allowed version flags on Ep2 BB games; closes #619 --- src/ReceiveCommands.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReceiveCommands.cc b/src/ReceiveCommands.cc index ed1c770e..466a2383 100644 --- a/src/ReceiveCommands.cc +++ b/src/ReceiveCommands.cc @@ -4402,7 +4402,7 @@ shared_ptr 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); } }