mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-28 04:51:42 +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;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((!player->exiting && specialstageinfo.valid == true) || (modeattacking & ATTACKING_SPB))
|
if (!player->exiting && (specialstageinfo.valid == true || modeattacking & ATTACKING_SPB))
|
||||||
{
|
{
|
||||||
player->pflags |= PF_NOCONTEST;
|
player->pflags |= PF_NOCONTEST;
|
||||||
P_DoPlayerExit(player);
|
P_DoPlayerExit(player);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue