diff --git a/engine/client/cl_frame.c b/engine/client/cl_frame.c index 70ce6e8e..b86debed 100644 --- a/engine/client/cl_frame.c +++ b/engine/client/cl_frame.c @@ -61,7 +61,7 @@ void CL_UpdatePositions( cl_entity_t *ent ) VectorCopy( ent->curstate.origin, ph->origin ); VectorCopy( ent->curstate.angles, ph->angles ); - if( ent->model->type == mod_brush ) + if( ent->model && ent->model->type == mod_brush ) ph->animtime = ent->curstate.animtime; else ph->animtime = cl.time;