From 56fcc772adb99a9de2a6a0832644798822b2dae0 Mon Sep 17 00:00:00 2001 From: VelocitOni Date: Wed, 2 Jul 2025 20:41:09 -0400 Subject: [PATCH] Comment out ffb print Comment out fast-fall bounce print --- src/k_kart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_kart.c b/src/k_kart.c index 8a1ea5fb3..70f6e7dfe 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -13351,7 +13351,7 @@ boolean K_FastFallBounce(player_t *player) // Handle fastfall bounce. if (player->fastfall != 0) { - CONS_Printf("ffb\n"); + //CONS_Printf("ffb\n"); const fixed_t maxBounce = mapobjectscale * 10; const fixed_t minBounce = mapobjectscale; fixed_t bounce = 2 * abs(player->fastfall) / 3;