diff options
Diffstat (limited to 'src/game/g_mover.c')
-rw-r--r-- | src/game/g_mover.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/g_mover.c b/src/game/g_mover.c index 2eda08b7..856f8cd5 100644 --- a/src/game/g_mover.c +++ b/src/game/g_mover.c @@ -1707,8 +1707,8 @@ void SP_func_door_model( gentity_t *ent ) ent->s.apos.trDuration = 0; VectorClear( ent->s.apos.trDelta ); - ent->s.powerups = (int)ent->animation[ 0 ]; //first frame - ent->s.weapon = abs( (int)ent->animation[ 1 ] ); //number of frames + ent->s.misc = (int)ent->animation[ 0 ]; //first frame + ent->s.weapon = abs( (int)ent->animation[ 1 ] ); //number of frames //must be at least one frame -- mapper has forgotten animation key if( ent->s.weapon == 0 ) |