From 09ad52722d16d0cf0122125b81f78175907ac345 Mon Sep 17 00:00:00 2001 From: Spoike Date: Sun, 15 Oct 2006 03:30:56 +0000 Subject: [PATCH] Fixed the rotation instant death in h2 git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2409 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/server/sv_phys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/server/sv_phys.c b/engine/server/sv_phys.c index ef179d753..01db6d44b 100644 --- a/engine/server/sv_phys.c +++ b/engine/server/sv_phys.c @@ -594,7 +594,7 @@ qboolean SV_PushAngles (edict_t *pusher, vec3_t move, vec3_t amove) // figure movement due to the pusher's amove VectorSubtract (check->v->origin, pusher->v->origin, org); org2[0] = DotProduct (org, forward); - org2[1] = DotProduct (org, right); + org2[1] = -DotProduct (org, right); org2[2] = DotProduct (org, up); VectorSubtract (org2, org, move2); VectorAdd (check->v->origin, move2, check->v->origin);