mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Don't play sonic boom sounds in hyudoro either
This commit is contained in:
parent
54e9534615
commit
feb9787187
1 changed files with 2 additions and 2 deletions
|
|
@ -8120,9 +8120,9 @@ static boolean P_MobjRegularThink(mobj_t *mobj)
|
||||||
mobj->renderflags |= (RF_DONTDRAW & ~K_GetPlayerDontDrawFlag(player));
|
mobj->renderflags |= (RF_DONTDRAW & ~K_GetPlayerDontDrawFlag(player));
|
||||||
|
|
||||||
// Alright, let's just handle all the sfx down here
|
// Alright, let's just handle all the sfx down here
|
||||||
boolean not_invinc_or_grow = player->invincibilitytimer == 0 && player->growshrinktimer <= 0;
|
boolean not_perma_tripwireok = player->invincibilitytimer == 0 && player->growshrinktimer <= 0 && player->hyudorotimer == 0;
|
||||||
|
|
||||||
if (P_IsDisplayPlayer(player) && not_invinc_or_grow && not_respawning)
|
if (P_IsDisplayPlayer(player) && not_perma_tripwireok && not_respawning)
|
||||||
{
|
{
|
||||||
UINT8 MIN_VOLUME = 25;
|
UINT8 MIN_VOLUME = 25;
|
||||||
UINT8 MAX_VOLUME = 75;
|
UINT8 MAX_VOLUME = 75;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue