From 045d3bf91db912a6c4fd9e84c097f881fb0d172c Mon Sep 17 00:00:00 2001 From: TehRealSalt Date: Fri, 7 Sep 2018 16:20:20 -0400 Subject: [PATCH] Speed pads always play a boost voice clip For the extra SA1 feel :P --- src/p_spec.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/p_spec.c b/src/p_spec.c index 103b31aa6..f67b39390 100644 --- a/src/p_spec.c +++ b/src/p_spec.c @@ -3853,6 +3853,13 @@ DoneSection2: player->powers[pw_flashing] = TICRATE/3; 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;