From 96abedcb8c792d4ad2c77bcf522b7998b165bdb0 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Tue, 20 Jan 2004 17:50:56 +0000 Subject: * Changed taunt animation handling on nonseg models * Fixed yaw swing bug on wall walking models * Added cg_drawBBOX to... draw BBOXes --- src/game/bg_pmove.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'src/game') diff --git a/src/game/bg_pmove.c b/src/game/bg_pmove.c index b90db531..4f8fe643 100644 --- a/src/game/bg_pmove.c +++ b/src/game/bg_pmove.c @@ -2984,10 +2984,13 @@ static void PM_Animate( void ) } else { - PM_ForceLegsAnim( NSPA_GESTURE ); - pm->ps->torsoTimer = TIMER_GESTURE; - - PM_AddEvent( EV_TAUNT ); + if( pm->ps->torsoTimer == 0 ) + { + PM_ForceLegsAnim( NSPA_GESTURE ); + pm->ps->torsoTimer = TIMER_GESTURE; + + PM_AddEvent( EV_TAUNT ); + } } } } -- cgit