mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-02 03:36:14 +00:00
Battle: fix Overtime 1v1 sound playing when last player is eliminated
- It should only play when a 3rd player dies, and leaves 2 remaining
This commit is contained in:
parent
eb8741b481
commit
92acc80975
1 changed files with 1 additions and 1 deletions
|
|
@ -150,7 +150,7 @@ void K_CheckBumpers(void)
|
|||
}
|
||||
}
|
||||
|
||||
if (numingame - eliminated <= 2 && battleovertime.enabled && battleovertime.radius <= BARRIER_MIN_RADIUS)
|
||||
if (numingame - eliminated == 2 && battleovertime.enabled && battleovertime.radius <= BARRIER_MIN_RADIUS)
|
||||
{
|
||||
Music_Stop("battle_overtime");
|
||||
S_StartSound(NULL, sfx_kc4b); // Loud noise helps mask transition
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue