From c5e3eb7fff9c614c2f56e42fab49240fe09ea213 Mon Sep 17 00:00:00 2001 From: James R Date: Thu, 9 Dec 2021 18:35:41 -0800 Subject: [PATCH] Minorly extend squish time --- src/k_kart.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/k_kart.c b/src/k_kart.c index 7401b9d4c..c7b406dc4 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -4545,7 +4545,7 @@ void K_DriftDustHandling(mobj_t *spawner) void K_Squish(mobj_t *mo) { const fixed_t maxstretch = 4*FRACUNIT; - const fixed_t factor = 3 * mo->height / 2; + const fixed_t factor = 5 * mo->height / 4; const fixed_t threshold = factor / 6; const fixed_t old3dspeed = abs(mo->lastmomz); @@ -4571,7 +4571,7 @@ void K_Squish(mobj_t *mo) { mo->spritexscale -= (mo->spritexscale - FRACUNIT) - / (mo->spritexscale < FRACUNIT ? 8 : 2); + / (mo->spritexscale < FRACUNIT ? 8 : 3); } mo->spriteyscale =