From 76f17ca97bfb725f717dbf481712ad20a6a508f3 Mon Sep 17 00:00:00 2001 From: yamamama Date: Wed, 4 Feb 2026 00:51:07 -0500 Subject: [PATCH] Bounce sound --- src/info/sounds.h | 3 +++ src/k_kart.c | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/info/sounds.h b/src/info/sounds.h index 2182f9703..2ef254abf 100644 --- a/src/info/sounds.h +++ b/src/info/sounds.h @@ -1020,3 +1020,6 @@ _(rainbr) // Horncode _(horn00) + +// Fastfall bounce +_(vclgna) diff --git a/src/k_kart.c b/src/k_kart.c index 645088e5e..c972594dc 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -7033,6 +7033,9 @@ static void K_AirDrop(player_t *player, ticcmd_t *cmd) { S_StopSoundByID(player->mo, sfx_s3kd9l); } + + // POOMP! + S_StartSound(player->mo, sfx_vclgna); } else if (airdropactive == AIRDROP_HEAVY) {