mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-25 19:43:22 +00:00
Since Versus intros have special behaviour in time attack, also allow them to avoid the white fade/warp sound of MapWarp
This commit is contained in:
parent
4a36d5f947
commit
8180033ae1
1 changed files with 2 additions and 2 deletions
|
|
@ -8399,7 +8399,7 @@ boolean P_LoadLevel(boolean fromnetsave, boolean reloadinggamestate)
|
|||
|
||||
// Special stage & record attack retry fade to white
|
||||
// This is handled BEFORE sounds are stopped.
|
||||
if (G_IsModeAttackRetrying() && !demo.playback && gametype != GT_VERSUS)
|
||||
if (G_IsModeAttackRetrying() && !demo.playback && (gametyperules & GTR_BOSS) == 0)
|
||||
{
|
||||
ranspecialwipe = 2;
|
||||
//wipestyleflags |= (WSF_FADEOUT|WSF_TOWHITE);
|
||||
|
|
@ -8477,7 +8477,7 @@ boolean P_LoadLevel(boolean fromnetsave, boolean reloadinggamestate)
|
|||
levelfadecol = 0;
|
||||
wipetype = wipe_encore_towhite;
|
||||
}
|
||||
else if (skipstats == 1)
|
||||
else if (skipstats == 1 && (gametyperules & GTR_BOSS) == 0)
|
||||
{
|
||||
// MapWarp
|
||||
if (ranspecialwipe != 2)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue