From: havoc Date: Tue, 13 Jan 2009 15:25:25 +0000 (+0000) Subject: I noticed the edgefriction value was wrong in the QW support (QW has X-Git-Tag: xonotic-v0.1.0preview~1945 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=fd3799b79613b3c3b13bb98428b2c08435cbf72d;p=xonotic%2Fdarkplaces.git I noticed the edgefriction value was wrong in the QW support (QW has broken edgefriction, so it should always be 1 - it was set to 2, oops) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8647 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_parse.c b/cl_parse.c index 41aeb0d9..0229f794 100644 --- a/cl_parse.c +++ b/cl_parse.c @@ -1531,7 +1531,7 @@ void CL_ParseServerInfo (void) cl.movevars_wallfriction = 0; cl.movevars_timescale = 1; cl.movevars_jumpvelocity = 270; - cl.movevars_edgefriction = 2; + cl.movevars_edgefriction = 1; cl.movevars_maxairspeed = 30; cl.movevars_stepheight = 18; cl.movevars_airaccel_qw = 1;