summaryrefslogtreecommitdiff
path: root/src/game/bg_misc.c
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2001-08-07 21:14:01 +0000
committerTim Angus <tim@ngus.net>2001-08-07 21:14:01 +0000
commitbf3bef5499e762aa5eee6e3e0935f7a913225a75 (patch)
tree5ae6a6912e7dac634ae6388512e2f6e127b68621 /src/game/bg_misc.c
parentd1a82b792471283809914926c8d88d4ddecb026d (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.c4
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 );
}