Skip to content

Commit

Permalink
- fix up car slots after RestoreStartData
Browse files Browse the repository at this point in the history
  • Loading branch information
SoapyMan committed Nov 26, 2020
1 parent 57f38d1 commit e3f33cb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src_rebuild/GAME/C/MISSION.C
Original file line number Diff line number Diff line change
Expand Up @@ -690,9 +690,14 @@ void LoadMission(int missionnum)
}

// check if start data is required
if (MissionHeader->type & 1)
if (MissionHeader->type & 1)
{
RestoreStartData();

if (PlayerStartInfo[0]->model > 4)
MissionHeader->residentModels[4] = PlayerStartInfo[0]->model;
}

PreProcessTargets();

// assign story mission title
Expand Down

0 comments on commit e3f33cb

Please sign in to comment.