From aaeaef5223efe520310d35ef19bf642319ba8082 Mon Sep 17 00:00:00 2001 From: James R Date: Mon, 29 Nov 2021 14:40:30 -0800 Subject: [PATCH] Do not set hu_stopped on interpolated frame --- src/d_clisrv.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/d_clisrv.c b/src/d_clisrv.c index 0f7227cb6..aa3ef2cd6 100644 --- a/src/d_clisrv.c +++ b/src/d_clisrv.c @@ -5264,12 +5264,14 @@ void TryRunTics(tic_t realtics) if (neededtic > gametic) { - hu_stopped = false; + if (realtics) + hu_stopped = false; } if (player_joining) { - hu_stopped = true; + if (realtics) + hu_stopped = true; return; } @@ -5307,7 +5309,8 @@ void TryRunTics(tic_t realtics) } else { - hu_stopped = true; + if (realtics) + hu_stopped = true; } }