From 41dbd48f721f3489e4ca162fc14484d13c57d53c Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Tue, 9 Aug 2011 12:19:27 +0000 Subject: Add hack to allow server the setting of game cvar values that are important for playerstate prediction for legacy gamecode. --- src/client/cl_parse.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/client') diff --git a/src/client/cl_parse.c b/src/client/cl_parse.c index 5218d0b3..e8bb6011 100644 --- a/src/client/cl_parse.c +++ b/src/client/cl_parse.c @@ -408,8 +408,14 @@ void CL_SystemInfoChanged( void ) { // If this cvar may not be modified by a server discard the value. if(!(cvar_flags & (CVAR_SYSTEMINFO | CVAR_SERVER_CREATED | CVAR_USER_CREATED))) { - Com_Printf(S_COLOR_YELLOW "WARNING: server is not allowed to set %s=%s\n", key, value); - continue; +#ifndef STANDALONE + if(Q_stricmp(key, "g_synchronousClients") && Q_stricmp(key, "pmove_fixed") && + Q_stricmp(key, "pmove_msec")) +#endif + { + Com_Printf(S_COLOR_YELLOW "WARNING: server is not allowed to set %s=%s\n", key, value); + continue; + } } Cvar_SetSafe(key, value); -- cgit