fix telepipe desync during BB joinable quest load

This commit is contained in:
Martin Michelsen
2025-01-21 23:46:46 -08:00
parent 5c807fa655
commit 4038221d8c
2 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -2048,7 +2048,7 @@ void send_join_game(shared_ptr<Client> c, shared_ptr<Lobby> l) {
S_JoinGame_BB_64 cmd;
size_t player_count = populate_v3_cmd(cmd);
cmd.solo_mode = (l->mode == GameMode::SOLO) ? 1 : 0;
cmd.unused2 = 0;
cmd.is_in_quest = !!l->quest;
send_command_t(c, 0x64, player_count, cmd);
break;
}