engine: client: fix double call to CL_ParametricMove

This commit is contained in:
Alibek Omarov 2022-02-24 02:49:10 +03:00
parent a2d8a47376
commit d4d39c66fb
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ void CL_ProcessEntityUpdate( cl_entity_t *ent )
if( FBitSet( ent->curstate.entityType, ENTITY_NORMAL ))
COM_NormalizeAngles( ent->curstate.angles );
parametric = CL_ParametricMove( ent );
parametric = ent->curstate.starttime != 0.0f && ent->curstate.impacttime != 0.0f;
// allow interpolation on bmodels too
if( ent->model && ent->model->type == mod_brush )