summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristopher Schwarz <lakitu7@gmail.com>2011-01-23 21:08:02 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:17:53 +0000
commit1d693fb13d2d664d7c85aacdb1dee47b617b5fd3 (patch)
treee43d6440024bbc744583369a71903b332d826135 /src
parenta363a414e0e1d5c74ba15239b375e4c3e940cc6a (diff)
* Fix for the camera freaking out when a wallwalker gets too close to another player (with thanks to kevlarman and Timbo)
Diffstat (limited to 'src')
-rw-r--r--src/game/bg_pmove.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game/bg_pmove.c b/src/game/bg_pmove.c
index c9fb044d..0c29d55d 100644
--- a/src/game/bg_pmove.c
+++ b/src/game/bg_pmove.c
@@ -1971,8 +1971,10 @@ static void PM_GroundClimbTrace( void )
case 1:
//trace straight down anto "ground" surface
+ //mask out CONTENTS_BODY to not hit other players and avoid the camera flipping out when
+ // wallwalkers touch
VectorMA( pm->ps->origin, -0.25f, surfNormal, point );
- pm->trace( &trace, pm->ps->origin, pm->mins, pm->maxs, point, pm->ps->clientNum, pm->tracemask );
+ pm->trace( &trace, pm->ps->origin, pm->mins, pm->maxs, point, pm->ps->clientNum, pm->tracemask & ~CONTENTS_BODY );
break;
case 2: