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:
parent
431358e7ae
commit
dcd4fd735b
|
@ -1918,7 +1918,8 @@ static void game_doHud()
|
||||||
events_check();
|
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)
|
if (SDL_GetTicks() >= engine.counter)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue