mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-30 19:52:43 +00:00
Don't abort SPB Attack on postrace death, idiot
This commit is contained in:
parent
8739d3076a
commit
c1baff583c
1 changed files with 1 additions and 1 deletions
|
|
@ -1921,7 +1921,7 @@ static boolean P_KillPlayer(player_t *player, mobj_t *inflictor, mobj_t *source,
|
|||
return false;
|
||||
}
|
||||
|
||||
if ((!player->exiting && specialstageinfo.valid == true) || (modeattacking & ATTACKING_SPB))
|
||||
if (!player->exiting && (specialstageinfo.valid == true || modeattacking & ATTACKING_SPB))
|
||||
{
|
||||
player->pflags |= PF_NOCONTEST;
|
||||
P_DoPlayerExit(player);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue