mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
K_MoveExitBeam: PF_NOCONTEST and P_DoPlayerExit to match other special stage failures.
Not a currently accessible codepath, but in-advance fix.: P_DoTimeOver sets exitcountdown effectively unconditionally, which means it can only be used in situations where *every* remaining player is about to explode.
This commit is contained in:
parent
472d7bf25c
commit
ae30a24a71
1 changed files with 2 additions and 1 deletions
|
|
@ -102,7 +102,8 @@ static void K_MoveExitBeam(void)
|
||||||
|
|
||||||
if (player->distancetofinish > specialstageinfo.beamDist)
|
if (player->distancetofinish > specialstageinfo.beamDist)
|
||||||
{
|
{
|
||||||
P_DoTimeOver(player);
|
player->pflags |= PF_NOCONTEST;
|
||||||
|
P_DoPlayerExit(player);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue