Improve symbol order until LegoActor, match LegoPlantManager::ScheduleAnimation (#1327)

* Order `LegoCarBuild`, `LegoPlantManager`

* Order until `LegoActor`
This commit is contained in:
Christian Semmler
2025-01-10 17:42:03 -07:00
committed by GitHub
parent ee2bcb4d53
commit ac3a551bcc
9 changed files with 120 additions and 126 deletions

View File

@@ -618,7 +618,11 @@ void LegoPlantManager::ScheduleAnimation(LegoEntity* p_entity, MxLong p_length)
entry->m_entity = p_entity;
entry->m_roi = p_entity->GetROI();
entry->m_time = Timer()->GetTime() + p_length + 1000;
MxLong time = Timer()->GetTime();
time += p_length;
entry->m_time = time + 1000;
FUN_100271b0(p_entity, -1);
}