Merge branch 'no-sonicboom-sounds-invinc-grow' into 'master'

Don't play sonic boom sounds in invinc or grow state

See merge request kart-krew-dev/ring-racers-internal!2931
This commit is contained in:
Eidolon 2025-10-12 13:11:13 -05:00
commit 36a0331c8b

View file

@ -8118,8 +8118,9 @@ static boolean P_MobjRegularThink(mobj_t *mobj)
mobj->renderflags |= (RF_DONTDRAW & ~K_GetPlayerDontDrawFlag(player));
// Alright, let's just handle all the sfx down here
boolean not_invinc_or_grow = player->invincibilitytimer == 0 && player->growshrinktimer <= 0;
if (P_IsDisplayPlayer(player))
if (P_IsDisplayPlayer(player) && not_invinc_or_grow)
{
UINT8 MIN_VOLUME = 25;
UINT8 MAX_VOLUME = 75;