Fixed the bug that caused the time cheat to make Mars unwinnable.

Am I going crazy? I could have swore this was fixed years ago.
This commit is contained in:
Julie Marchant 2019-05-26 20:01:16 -04:00
parent 431358e7ae
commit dcd4fd735b
1 changed files with 2 additions and 1 deletions

View File

@ -1918,7 +1918,8 @@ static void game_doHud()
events_check();
}
if ((engine.timeMission) && (!engine.cheatTime) && (player.shield > 0))
if ((engine.timeMission) && (player.shield > 0) &&
((!engine.cheatTime) || (game.area == MISN_MARS)))
{
if (SDL_GetTicks() >= engine.counter)
{