From 80ac9210c518bd90da5e65598d37c2934c55b06f Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Wed, 15 May 2024 18:46:59 -0400 Subject: [PATCH] PostThinkFrame during run only It's scary that it wasn't doing this before! --- src/p_tick.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p_tick.c b/src/p_tick.c index d00b08549..ce3a45850 100644 --- a/src/p_tick.c +++ b/src/p_tick.c @@ -1355,10 +1355,10 @@ void P_Ticker(boolean run) K_TickMessages(); } - LUA_HOOK(PostThinkFrame); - if (run) { + LUA_HOOK(PostThinkFrame); + R_UpdateLevelInterpolators(); // Hack: ensure newview is assigned every tic.