From 1d008bab4312ee78a737183377010e316ffc86e9 Mon Sep 17 00:00:00 2001 From: Ashnal Date: Mon, 15 Sep 2025 19:41:55 -0400 Subject: [PATCH] acid drop give small dropdash on land --- src/k_kart.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/k_kart.c b/src/k_kart.c index a3eb8716b..856dce467 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -10006,6 +10006,13 @@ void K_KartPlayerThink(player_t *player, ticcmd_t *cmd) if (onground && player->transfer) { + + if (player->fastfall) // If you elected to supertransfer, you get a small dropdash boost on land + { + S_StartSound(player->mo, sfx_s23c); + player->dropdashboost = 50; + K_SpawnDashDustRelease(player); + } player->fastfall = 0; player->transfer = 0; player->pflags2 &= ~PF2_SUPERTRANSFERVFX;