From dcd4fd735bf72907cec00ca4eb1df959a2d3bc5c Mon Sep 17 00:00:00 2001 From: Julie Marchant Date: Sun, 26 May 2019 20:01:16 -0400 Subject: [PATCH] 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. --- src/game.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/game.c b/src/game.c index 2ceb015..a6334cf 100644 --- a/src/game.c +++ b/src/game.c @@ -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) {