From 1e341b0725223328db7331f4b2bf2b905b34e352 Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Tue, 21 Jun 2011 13:31:19 +0000 Subject: - Clear ip address listings after a NET_Restart - check for oldGameSet instead of the gamename string --- src/client/cl_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/client') diff --git a/src/client/cl_parse.c b/src/client/cl_parse.c index 03967927..7a75239e 100644 --- a/src/client/cl_parse.c +++ b/src/client/cl_parse.c @@ -530,7 +530,7 @@ 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.oldGame[0]) + if(FS_ConditionalRestart(clc.checksumFeed, qfalse) && !cls.oldGameSet) { cls.oldGameSet = qtrue; Q_strncpyz(cls.oldGame, oldGame, sizeof(cls.oldGame)); -- cgit