From: samual Date: Mon, 14 Sep 2009 18:38:59 +0000 (+0000) Subject: Patch by FruitieX -- fixes speed X-Git-Tag: xonotic-v0.1.0preview~1437 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=6661d4a6e250ded9d9c8e536d475f8cf157fbdcd Patch by FruitieX -- fixes speed git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9195 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/csprogs.c b/csprogs.c index 7f67ecba..1ee20b60 100644 --- a/csprogs.c +++ b/csprogs.c @@ -106,7 +106,7 @@ static void CSQC_SetGlobals (void) // CSQC is useless as it can't alter the view origin without // completely replacing it VectorCopy(cl.csqc_origin, prog->globals.client->pmove_org); - VectorCopy(cl.velocity, prog->globals.client->pmove_vel); + VectorCopy(cl.movement_velocity, prog->globals.client->pmove_vel); if ((val = PRVM_GLOBALFIELDVALUE(prog->globaloffsets.view_angles))) VectorCopy(cl.viewangles, val->vector);