From 564fbccd704780f16dd58e03278b11336944fb68 Mon Sep 17 00:00:00 2001 From: Ben Millwood Date: Sat, 3 Oct 2009 12:55:58 +0000 Subject: add cg_disableBlueprintErrors and un-cvarize g_humanRepeaterAllowOverlap --- src/game/g_client.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/game/g_client.c') diff --git a/src/game/g_client.c b/src/game/g_client.c index 174498ab..51972395 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -1134,6 +1134,14 @@ void ClientUserinfoChanged( int clientNum ) else client->pers.flySpeed = BG_Class( PCL_NONE )->speed; + // disable blueprint errors + s = Info_ValueForKey( userinfo, "cg_disableBlueprintErrors" ); + + if( atoi( s ) ) + client->pers.disableBlueprintErrors = qtrue; + else + client->pers.disableBlueprintErrors = qfalse; + // teamInfo s = Info_ValueForKey( userinfo, "teamoverlay" ); -- cgit