]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
Remove signon check for QW reconnect. Client now follows server into next map
authorcloudwalk <cloudwalk@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 20 May 2020 15:22:07 +0000 (15:22 +0000)
committercloudwalk <cloudwalk@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 20 May 2020 15:22:07 +0000 (15:22 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12547 d7cf8633-e32d-0410-b094-e92efae38249

host_cmd.c

index 8198f4aa2fd7b348ad8653981132685bc7e8ccec..4092d8012508df4c3f88cbc4fd0215794b9ca4bd 100644 (file)
@@ -495,9 +495,9 @@ void Host_Reconnect_f(cmd_state_t *cmd)
 
                S_StopAllSounds();
 
-               if (cls.state == ca_connected && cls.signon < SIGNONS)
+               if (cls.state == ca_connected)
                {
-                       Con_Printf("reconnecting...\n");
+                       Con_Printf("Server is changing level...\n");
                        MSG_WriteChar(&cls.netcon->message, qw_clc_stringcmd);
                        MSG_WriteString(&cls.netcon->message, "new");
                }