From 86c41d39daee32393d5d48f7fe099bbfd18b0fa7 Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Mon, 2 May 2011 16:03:35 +0000 Subject: [PATCH] Fix sending reliable commands before being connected, patch by Eugene C. (#4971) --- code/client/cl_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/client/cl_main.c b/code/client/cl_main.c index 719902a6..93d325b7 100644 --- a/code/client/cl_main.c +++ b/code/client/cl_main.c @@ -2634,7 +2634,7 @@ CL_CheckUserinfo */ 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