[quake3-commits] r1957 - trunk/code/client
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Mon May 2 12:03:36 EDT 2011
Author: thilo
Date: 2011-05-02 12:03:35 -0400 (Mon, 02 May 2011)
New Revision: 1957
Modified:
trunk/code/client/cl_main.c
Log:
Fix sending reliable commands before being connected, patch by Eugene C. (#4971)
Modified: trunk/code/client/cl_main.c
===================================================================
--- trunk/code/client/cl_main.c 2011-05-02 15:58:56 UTC (rev 1956)
+++ trunk/code/client/cl_main.c 2011-05-02 16:03:35 UTC (rev 1957)
@@ -2634,7 +2634,7 @@
*/
void CL_CheckUserinfo( void ) {
// don't add reliable commands when not yet connected
- if(cls.state < CA_CHALLENGING)
+ if(cls.state < CA_CONNECTED)
return;
// don't overflow the reliable command buffer when paused
More information about the quake3-commits
mailing list