mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-02-07 08:51:40 +00:00
Speed pads always play a boost voice clip
For the extra SA1 feel :P
This commit is contained in:
parent
2cc07df3d2
commit
f907a3c215
1 changed files with 7 additions and 0 deletions
|
@ -3853,6 +3853,13 @@ DoneSection2:
|
||||||
|
|
||||||
player->powers[pw_flashing] = TICRATE/3;
|
player->powers[pw_flashing] = TICRATE/3;
|
||||||
S_StartSound(player->mo, sfx_spdpad);
|
S_StartSound(player->mo, sfx_spdpad);
|
||||||
|
|
||||||
|
{
|
||||||
|
sfxenum_t pick = P_RandomKey(2); // Gotta roll the RNG every time this is called for sync reasons
|
||||||
|
if (cv_kartvoices.value)
|
||||||
|
S_StartSound(player->mo, sfx_kbost1+pick);
|
||||||
|
//K_TauntVoiceTimers(player);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue