mirror of
https://github.com/blendogames/thirtyflightsofloving.git
synced 2024-11-14 16:40:57 +00:00
Removed userinfo flag from cvars cl_engine and cl_engine_version.
Fixes userinfo overflow with certain mods that results in null player name.
This commit is contained in:
parent
ee9f79daff
commit
c0aa905347
1 changed files with 2 additions and 2 deletions
|
@ -1681,8 +1681,8 @@ void CL_InitLocal (void)
|
|||
cl_vwep = Cvar_Get ("cl_vwep", "1", CVAR_ARCHIVE);
|
||||
|
||||
// for the server to tell which version the client is
|
||||
cl_engine = Cvar_Get ("cl_engine", "KMQuake2", CVAR_USERINFO | CVAR_NOSET | CVAR_LATCH);
|
||||
cl_engine_version = Cvar_Get ("cl_engine_version", va("%4.2f",VERSION), CVAR_USERINFO | CVAR_NOSET | CVAR_LATCH);
|
||||
cl_engine = Cvar_Get ("cl_engine", "KMQuake2", /*CVAR_USERINFO |*/ CVAR_NOSET | CVAR_LATCH);
|
||||
cl_engine_version = Cvar_Get ("cl_engine_version", va("%4.2f",VERSION), /*CVAR_USERINFO |*/ CVAR_NOSET | CVAR_LATCH);
|
||||
|
||||
#ifdef LOC_SUPPORT // Xile/NiceAss LOC
|
||||
cl_drawlocs = Cvar_Get("cl_drawlocs", "0", 0);
|
||||
|
|
Loading…
Reference in a new issue