Convars with FCVAR_REPLICATED flag should now be replicated properly when sm_cvar is used.

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40943
This commit is contained in:
Scott Ehlert 2007-06-15 06:31:12 +00:00
parent 28ae0b0d65
commit 6193ed8431

View File

@ -460,7 +460,7 @@ public Action:Command_Cvar(client, args)
LogMessage("\"%L\" changed cvar (cvar \"%s\") (value \"%s\")", client, cvarname, value);
SetConVarString(hndl, value);
SetConVarString(hndl, value, true);
return Plugin_Handled;
}