LinkModel matching

This commit is contained in:
Dethrace Labs 2025-11-16 21:59:35 +13:00 committed by Dethrace Engineering Department
parent c4b620dcf9
commit f9870354db
1 changed files with 1 additions and 2 deletions

View File

@ -1703,11 +1703,10 @@ intptr_t LinkModel(br_actor* pActor, tModel_pool* pModel_pool) {
if (pModel_pool->model_array[i]->identifier
&& !strcmp(pModel_pool->model_array[i]->identifier, pActor->model->identifier)) {
pActor->model = pModel_pool->model_array[i];
return 0;
break;
}
}
}
// LOG_WARN("failed to link model %s", pActor->model->identifier);
return 0;
}