mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix inverted cooldown check on taunt voices
This commit is contained in:
parent
f82277be7b
commit
5414c36e18
1 changed files with 1 additions and 1 deletions
|
|
@ -2710,7 +2710,7 @@ static void K_PlayGenericTastefulTaunt(mobj_t *source, sfxenum_t sfx_id)
|
||||||
if (skinid >= numskins)
|
if (skinid >= numskins)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
boolean tasteful = (!source->player || source->player->karthud[khud_tauntvoices]);
|
boolean tasteful = (!source->player || !source->player->karthud[khud_tauntvoices]);
|
||||||
|
|
||||||
if (
|
if (
|
||||||
cv_kartvoices.value
|
cv_kartvoices.value
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue