mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-03 07:22:10 +00:00
Fix old Special Stage failure sounds not always playing.
This commit is contained in:
parent
cbd408278f
commit
27f012740b
1 changed files with 3 additions and 0 deletions
|
|
@ -4601,7 +4601,10 @@ DoneSection2:
|
||||||
if (player->bot)
|
if (player->bot)
|
||||||
break;
|
break;
|
||||||
if (!(maptol & TOL_NIGHTS) && G_IsSpecialStage(gamemap) && player->nightstime > 6)
|
if (!(maptol & TOL_NIGHTS) && G_IsSpecialStage(gamemap) && player->nightstime > 6)
|
||||||
|
{
|
||||||
player->nightstime = 6; // Just let P_Ticker take care of the rest.
|
player->nightstime = 6; // Just let P_Ticker take care of the rest.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Exit (for FOF exits; others are handled in P_PlayerThink in p_user.c)
|
// Exit (for FOF exits; others are handled in P_PlayerThink in p_user.c)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue