1
0
Fork 0
forked from fte/fteqw

Small workaround for excessive spam. This is not an actual fix, but more of an optimisation.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3843 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2011-07-01 12:20:58 +00:00
parent f870305702
commit fbec99ff9f

View file

@ -658,11 +658,15 @@ cvar_t *Cvar_SetCore (cvar_t *var, const char *value, qboolean force)
#ifndef CLIENTONLY #ifndef CLIENTONLY
if (var->flags & CVAR_SERVERINFO) if (var->flags & CVAR_SERVERINFO)
{
char *old = Info_ValueForKey(svs.info, var->name);
if (strcmp(old, value)) //only spam the server if it actually changed
{ {
Info_SetValueForKey (svs.info, var->name, value, MAX_SERVERINFO_STRING); Info_SetValueForKey (svs.info, var->name, value, MAX_SERVERINFO_STRING);
SV_SendServerInfoChange(var->name, value); SV_SendServerInfoChange(var->name, value);
// SV_BroadcastCommand ("fullserverinfo \"%s\"\n", svs.info); // SV_BroadcastCommand ("fullserverinfo \"%s\"\n", svs.info);
} }
}
#endif #endif
#ifndef SERVERONLY #ifndef SERVERONLY
if (var->flags & CVAR_SHADERSYSTEM) if (var->flags & CVAR_SHADERSYSTEM)