# HG changeset patch # User Adam Kaminski # Date 1641867745 18000 # Mon Jan 10 21:22:25 2022 -0500 # Node ID 5d0aa256911b1db3e781bb6a6f91b960017587e7 # Parent e863fdf235c0af53c4c2a60f391a41150bd1fec2 Fixed: restarting the map didn't unfreeze the game properly in online games. diff -r e863fdf235c0 -r 5d0aa256911b src/g_game.cpp --- a/src/g_game.cpp Mon Sep 15 12:59:07 2014 -0400 +++ b/src/g_game.cpp Mon Jan 10 21:22:25 2022 -0500 @@ -3392,6 +3392,9 @@ if ( NETWORK_GetState( ) != NETSTATE_SERVER ) S_StopAllUnattachedSounds( ); + // [AK] Also make sure that the game isn't frozen. + level.flags2 &= ~LEVEL2_FROZEN; + // [BB] We are going to reset the map now, so any request for a reset is fulfilled. g_bResetMap = false;