mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix inverted cooldown check on generic voices
This commit is contained in:
parent
5414c36e18
commit
34aa3607f8
1 changed files with 1 additions and 1 deletions
|
|
@ -2747,7 +2747,7 @@ void K_PlayOvertakeSound(mobj_t *source)
|
||||||
if (skinid >= numskins)
|
if (skinid >= numskins)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
boolean tasteful = (!source->player || source->player->karthud[khud_voices]);
|
boolean tasteful = (!source->player || !source->player->karthud[khud_voices]);
|
||||||
|
|
||||||
if (!(gametyperules & GTR_CIRCUIT)) // Only in race
|
if (!(gametyperules & GTR_CIRCUIT)) // Only in race
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue