From c02b117b94f6465556d882fcf515c4d6041644f6 Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Wed, 24 Aug 2011 14:47:57 +0000 Subject: Fix auto game-restart when disconnecting from a server that explicitly set fs_game to "baseq3" instead of "" --- src/client/cl_parse.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/client') diff --git a/src/client/cl_parse.c b/src/client/cl_parse.c index e8bb6011..38d9edd3 100644 --- a/src/client/cl_parse.c +++ b/src/client/cl_parse.c @@ -529,12 +529,14 @@ void CL_ParseGamestate( msg_t *msg ) { CL_StopRecord_f(); // reinitialize the filesystem if the game directory has changed - if(FS_ConditionalRestart(clc.checksumFeed, qfalse) && !cls.oldGameSet) + if(!cls.oldGameSet && (Cvar_Flags("fs_game") & CVAR_MODIFIED)) { cls.oldGameSet = qtrue; Q_strncpyz(cls.oldGame, oldGame, sizeof(cls.oldGame)); } + FS_ConditionalRestart(clc.checksumFeed, qfalse); + // This used to call CL_StartHunkUsers, but now we enter the download state before loading the // cgame CL_InitDownloads(); -- cgit