diff options
Diffstat (limited to 'src/game/bg_misc.c')
-rw-r--r-- | src/game/bg_misc.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/game/bg_misc.c b/src/game/bg_misc.c index 1ca5734c..6cfd5dd7 100644 --- a/src/game/bg_misc.c +++ b/src/game/bg_misc.c @@ -3641,13 +3641,9 @@ void BG_PlayerStateToEntityState( playerState_t *ps, entityState_t *s, qboolean //TA: have to get the surfNormal thru somehow... if( ps->stats[ STAT_STATE ] & SS_WALLCLIMBINGCEILING ) - { VectorCopy( ceilingNormal, s->angles2 ); - } else - { VectorCopy( ps->grapplePoint, s->angles2 ); - } s->loopSound = ps->loopSound; s->generic1 = ps->generic1; @@ -3738,13 +3734,9 @@ void BG_PlayerStateToEntityStateExtraPolate( playerState_t *ps, entityState_t *s //TA: have to get the surfNormal thru somehow... if( ps->stats[ STAT_STATE ] & SS_WALLCLIMBINGCEILING ) - { VectorCopy( ceilingNormal, s->angles2 ); - } else - { VectorCopy( ps->grapplePoint, s->angles2 ); - } s->loopSound = ps->loopSound; s->generic1 = ps->generic1; |