Don't set a completed mission as the active one.

This commit is contained in:
Steve 2016-08-10 13:04:35 +01:00
parent e28bb6ff31
commit f9588c4b08
1 changed files with 4 additions and 1 deletions

View File

@ -180,7 +180,10 @@ void updateStarSystemMissions(void)
{
starSystem->availableMissions++;
starSystem->activeMission = mission;
if (!mission->completed)
{
starSystem->activeMission = mission;
}
}
prev = mission;