From fb1bfd8215d3f69e7321cf68eec7114a019de94e Mon Sep 17 00:00:00 2001 From: Eidolon Date: Thu, 5 May 2022 18:49:31 -0500 Subject: [PATCH] Run UpdateLevelInterpolators in preticker Fixes KartKrew/Kart-Public#10 --- src/p_tick.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/p_tick.c b/src/p_tick.c index 16368817..d423b9f8 100644 --- a/src/p_tick.c +++ b/src/p_tick.c @@ -851,6 +851,8 @@ void P_PreTicker(INT32 frames) P_UpdateSpecials(); P_RespawnSpecials(); + R_UpdateLevelInterpolators(); + P_MapEnd(); } }