diff options
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/cl_parse.c | 4 |
1 files changed, 3 insertions, 1 deletions
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(); |