From fd57fb6f7e2cc60829d7634c8ab5cb9e892c6459 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Mon, 17 Feb 2003 02:55:04 +0000 Subject: * Aliens no longer employ weapon models * Different attack animations triggered for primary, secondary etc.. --- src/game/bg_pmove.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/game') diff --git a/src/game/bg_pmove.c b/src/game/bg_pmove.c index 5c57a6f7..f8615e30 100644 --- a/src/game/bg_pmove.c +++ b/src/game/bg_pmove.c @@ -2611,7 +2611,13 @@ static void PM_Weapon( void ) PM_StartTorsoAnim( TORSO_ATTACK ); else { - PM_ForceLegsAnim( NSPA_ATTACK3 ); + if( attack1 ) + PM_ForceLegsAnim( NSPA_ATTACK1 ); + else if( attack2 ) + PM_ForceLegsAnim( NSPA_ATTACK2 ); + else if( attack3 ) + PM_ForceLegsAnim( NSPA_ATTACK3 ); + pm->ps->torsoTimer = TIMER_ATTACK; } -- cgit