Revert "Quicker, almost instantaneous Sealed Star conclusion after death"

This reverts commit 32eead29e5.
This commit is contained in:
toaster 2023-06-26 20:23:29 +01:00
parent 35df66f2b1
commit d17399bcce

View file

@ -1436,7 +1436,7 @@ void P_DoPlayerExit(player_t *player, pflags_t flags)
{ {
if (specialout == true) if (specialout == true)
{ {
exitcountdown = 2; exitcountdown = TICRATE;
} }
else else
{ {
@ -1498,8 +1498,7 @@ void P_DoAllPlayersExit(pflags_t flags, boolean trygivelife)
{ {
UINT8 i; UINT8 i;
boolean givenlife = false; boolean givenlife = false;
boolean dofinishsound = (musiccountdown == 0); const boolean dofinishsound = (musiccountdown == 0);
boolean specialout = specialstageinfo.valid;
for (i = 0; i < MAXPLAYERS; i++) for (i = 0; i < MAXPLAYERS; i++)
{ {
@ -1514,11 +1513,6 @@ void P_DoAllPlayersExit(pflags_t flags, boolean trygivelife)
P_DoPlayerExit(&players[i], flags); P_DoPlayerExit(&players[i], flags);
if (specialout && K_IsPlayerLosing(&players[i]) == false)
{
specialout = false;
}
if (trygivelife == false) if (trygivelife == false)
{ {
continue; continue;
@ -1528,7 +1522,7 @@ void P_DoAllPlayersExit(pflags_t flags, boolean trygivelife)
givenlife = true; givenlife = true;
} }
if (!dofinishsound || specialout) if (!dofinishsound)
{ {
// You've already finished, don't play again // You've already finished, don't play again
; ;