]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
I noticed the edgefriction value was wrong in the QW support (QW has
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 13 Jan 2009 15:25:25 +0000 (15:25 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 13 Jan 2009 15:25:25 +0000 (15:25 +0000)
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

index 41aeb0d98fcf2919cfeb4ff5e029045986721663..0229f79485cbd3c6a3bed648097372a91e46a44f 100644 (file)
@@ -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;