mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Fix sending reliable commands before being connected, patch by Eugene C. (#4971)
This commit is contained in:
parent
50721a6580
commit
86c41d39da
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue