diff options
| -rw-r--r-- | src/game/bg_pmove.c | 4 | 
1 files changed, 2 insertions, 2 deletions
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;  | 
