From fd3799b79613b3c3b13bb98428b2c08435cbf72d Mon Sep 17 00:00:00 2001 From: havoc Date: Tue, 13 Jan 2009 15:25:25 +0000 Subject: [PATCH] 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 --- cl_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2