Don't mark a previously completed mission as incomplete, upon replay failure.
This commit is contained in:
parent
b1230c24cf
commit
20f2295618
|
@ -437,7 +437,7 @@ static void postBattle(void)
|
|||
|
||||
updateAccuracyStats(game.stats);
|
||||
|
||||
game.currentMission->completed = (battle.status == MS_COMPLETE || !battle.numObjectivesTotal);
|
||||
game.currentMission->completed = (game.currentMission->completed || battle.status == MS_COMPLETE || !battle.numObjectivesTotal);
|
||||
|
||||
app.saveGame = 1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue