mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'no-exit-respawn' into 'master'
Don't respawn from true death if exiting (fixes death position flicker?) Closes #1418 See merge request kart-krew-dev/ring-racers-internal!2703
This commit is contained in:
commit
5cbfd133a0
1 changed files with 2 additions and 1 deletions
|
|
@ -2950,7 +2950,8 @@ static void P_DeathThink(player_t *player)
|
|||
}
|
||||
else
|
||||
{
|
||||
player->playerstate = PST_REBORN;
|
||||
if (!player->exiting)
|
||||
player->playerstate = PST_REBORN;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue