diff options
author | Tim Angus <tim@ngus.net> | 2001-08-07 21:14:01 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2001-08-07 21:14:01 +0000 |
commit | bf3bef5499e762aa5eee6e3e0935f7a913225a75 (patch) | |
tree | 5ae6a6912e7dac634ae6388512e2f6e127b68621 /src/game/bg_misc.c | |
parent | d1a82b792471283809914926c8d88d4ddecb026d (diff) |
Moved WW smoothing to client side. snarfed glibc acos
Diffstat (limited to 'src/game/bg_misc.c')
-rw-r--r-- | src/game/bg_misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/bg_misc.c b/src/game/bg_misc.c index 89a8d6ba..1ca5734c 100644 --- a/src/game/bg_misc.c +++ b/src/game/bg_misc.c @@ -3640,7 +3640,7 @@ void BG_PlayerStateToEntityState( playerState_t *ps, entityState_t *s, qboolean s->powerups = ps->stats[ STAT_PTEAM ] | ( ps->stats[ STAT_PCLASS ] << 8 ); //TA: have to get the surfNormal thru somehow... - if( ps->stats[ STAT_STATE ] & SS_GPISROTVEC ) + if( ps->stats[ STAT_STATE ] & SS_WALLCLIMBINGCEILING ) { VectorCopy( ceilingNormal, s->angles2 ); } @@ -3737,7 +3737,7 @@ void BG_PlayerStateToEntityStateExtraPolate( playerState_t *ps, entityState_t *s s->powerups = ps->stats[ STAT_PTEAM ] | ( ps->stats[ STAT_PCLASS ] << 8 ); //TA: have to get the surfNormal thru somehow... - if( ps->stats[ STAT_STATE ] & SS_GPISROTVEC ) + if( ps->stats[ STAT_STATE ] & SS_WALLCLIMBINGCEILING ) { VectorCopy( ceilingNormal, s->angles2 ); } |