From: eviltypeguy Date: Thu, 7 Feb 2002 01:18:22 +0000 (+0000) Subject: Remove pointless and wasteful variable assignment X-Git-Tag: RELEASE_0_2_0_RC1~654 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3accd215a4771117c49f35b440c1b6b8a6db6dc6;p=xonotic%2Fdarkplaces.git Remove pointless and wasteful variable assignment git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@1500 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/sv_phys.c b/sv_phys.c index 26775e84..855abe16 100644 --- a/sv_phys.c +++ b/sv_phys.c @@ -118,7 +118,6 @@ void SV_CheckVelocity (edict_t *ent) ent->v.velocity[0] *= wishspeed; ent->v.velocity[1] *= wishspeed; ent->v.velocity[2] *= wishspeed; - wishspeed = sv_maxvelocity.value; } }