diff options
Diffstat (limited to 'src/cgame/cg_event.c')
-rw-r--r-- | src/cgame/cg_event.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cgame/cg_event.c b/src/cgame/cg_event.c index d9a1ae4c..b5034fd3 100644 --- a/src/cgame/cg_event.c +++ b/src/cgame/cg_event.c @@ -908,7 +908,8 @@ void CG_EntityEvent( centity_t *cent, vec3_t position ) { //TA: trigger an anim on a buildable item case EV_BUILD_ANIM: DEBUGNAME("EV_BUILD_ANIM"); - cent->buildableAnim = es->eventParm; + if( cent->buildableAnim == es->torsoAnim ) + cent->buildableAnim = es->eventParm; break; case EV_GRENADE_BOUNCE: |