mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fade time before Game Over track.
Notably, can no longer use P_PlayJingle because of pre-fade.
This commit is contained in:
parent
7f69b52708
commit
5eb6b408a1
1 changed files with 3 additions and 2 deletions
|
|
@ -2469,8 +2469,9 @@ void P_KillMobj(mobj_t *target, mobj_t *inflictor, mobj_t *source, UINT8 damaget
|
||||||
else if (P_IsLocalPlayer(target->player))
|
else if (P_IsLocalPlayer(target->player))
|
||||||
gameovermus = true;
|
gameovermus = true;
|
||||||
|
|
||||||
if (gameovermus)
|
if (gameovermus) // Yousa dead now, Okieday? Tails 03-14-2000
|
||||||
P_PlayJingle(target->player, JT_GOVER); // Yousa dead now, Okieday? Tails 03-14-2000
|
S_ChangeMusicEx("_gover", 0, 0, 0, (2*MUSICRATE) - (MUSICRATE/25), 0); // 1.96 seconds
|
||||||
|
//P_PlayJingle(target->player, JT_GOVER); // can't be used because incompatible with track fadeout
|
||||||
|
|
||||||
if (!(netgame || multiplayer || demoplayback || demorecording || metalrecording || modeattacking) && numgameovers < maxgameovers)
|
if (!(netgame || multiplayer || demoplayback || demorecording || metalrecording || modeattacking) && numgameovers < maxgameovers)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue