- initiate a full game reset when respawning after death.

This was done with the old code but we now have to set the respective flag explicitly because the init code is inside the main loop, not outside.
Fixes #188
This commit is contained in:
Christoph Oelckers 2020-08-17 20:30:44 +02:00
parent 8011526e71
commit 17f9bc8a8a

View file

@ -6718,6 +6718,9 @@ void DoPlayerDeathCheckKeys(PLAYERp pp)
else
{
ExitLevel = TRUE;
NewGame = true;
NextLevel = currentLevel;
}
DoPlayerFireOutDeath(pp);