From 0416ce8dd3266172fd7497d4ca0c5a217174afa8 Mon Sep 17 00:00:00 2001 From: IronClawTrem Date: Wed, 8 Apr 2020 15:21:40 +0100 Subject: Revert "improve wallwalk when dropping from slanted surfaces" This reverts commit e4ce796542a1d939258945ee17fd4fe44d6eabe4. --- src/game/bg_pmove.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/game/bg_pmove.c') diff --git a/src/game/bg_pmove.c b/src/game/bg_pmove.c index a23cd54..542b585 100644 --- a/src/game/bg_pmove.c +++ b/src/game/bg_pmove.c @@ -1958,7 +1958,7 @@ static void PM_GroundClimbTrace( void ) pm->ps->eFlags &= ~EF_WALLCLIMB; //just transided from ceiling to floor... apply delta correction - if( ( pm->ps->stats[ STAT_STATE ] & SS_WALLCLIMBINGCEILING ) || pm->ps->grapplePoint[2] < 0 ) + if( pm->ps->stats[ STAT_STATE ] & SS_WALLCLIMBINGCEILING ) { vec3_t forward, rotated, angles; @@ -2043,7 +2043,7 @@ static void PM_GroundTrace( void ) } //just transided from ceiling to floor... apply delta correction - if( ( pm->ps->stats[ STAT_STATE ] & SS_WALLCLIMBINGCEILING ) || pm->ps->grapplePoint[2] < 0 ) + if( pm->ps->stats[ STAT_STATE ] & SS_WALLCLIMBINGCEILING ) { vec3_t forward, rotated, angles; -- cgit