From c01940389f07f93baafa886308fd46797ffd8815 Mon Sep 17 00:00:00 2001 From: lordhavoc Date: Mon, 10 Jun 2002 17:21:30 +0000 Subject: [PATCH] advance angles as well as origin on clients when noclipping (why? I don't know, consistency) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@1939 d7cf8633-e32d-0410-b094-e92efae38249 --- sv_phys.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sv_phys.c b/sv_phys.c index 63017431..0d89b119 100644 --- a/sv_phys.c +++ b/sv_phys.c @@ -1039,6 +1039,7 @@ void SV_Physics_Client (edict_t *ent, int num) return; SV_CheckWater (ent); VectorMA (ent->v.origin, sv.frametime, ent->v.velocity, ent->v.origin); + VectorMA (ent->v.angles, sv.frametime, ent->v.avelocity, ent->v.angles); break; default: -- 2.39.2