mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
Update new music cues to use correct names
This commit is contained in:
parent
e62b0f219f
commit
63622cb2dd
1 changed files with 2 additions and 10 deletions
|
@ -253,12 +253,8 @@ void P_DoMatchSuper(player_t *player)
|
|||
{
|
||||
S_StopMusic();
|
||||
if (mariomode)
|
||||
{
|
||||
S_ChangeMusicInternal("minvnc", false);
|
||||
G_GhostAddColor(GHC_INVINCIBLE);
|
||||
}
|
||||
else
|
||||
S_ChangeMusicInternal("invinc", false);
|
||||
S_ChangeMusicInternal((mariomode) ? "_minv" : "_inv", false);
|
||||
}
|
||||
|
||||
// Also steal 50 points from every enemy, sealing your victory.
|
||||
|
@ -278,12 +274,8 @@ void P_DoMatchSuper(player_t *player)
|
|||
{
|
||||
S_StopMusic();
|
||||
if (mariomode)
|
||||
{
|
||||
S_ChangeMusicInternal("minvnc", false);
|
||||
G_GhostAddColor(GHC_INVINCIBLE);
|
||||
}
|
||||
else
|
||||
S_ChangeMusicInternal("invinc", false);
|
||||
S_ChangeMusicInternal((mariomode) ? "_minv" : "_inv", false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue