Don't respawn from true death if exiting (fixes death position flicker?)

This commit is contained in:
Antonio Martinez 2025-07-23 16:53:58 -04:00
parent c06fc9cccf
commit 26cc66b7d5

View file

@ -2950,7 +2950,8 @@ static void P_DeathThink(player_t *player)
}
else
{
player->playerstate = PST_REBORN;
if (!player->exiting)
player->playerstate = PST_REBORN;
}
}