From c5e9e1a196e46e6a3692ad780a093cf73b3cc34c Mon Sep 17 00:00:00 2001 From: NepDisk <16447892+NepDisk@users.noreply.github.com> Date: Mon, 7 Oct 2024 21:51:20 -0400 Subject: [PATCH] Remove defrosting levelovers --- src/d_clisrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_clisrv.c b/src/d_clisrv.c index 108b04177..9a013bd63 100644 --- a/src/d_clisrv.c +++ b/src/d_clisrv.c @@ -5575,7 +5575,7 @@ boolean TryRunTics(tic_t realtics) ps_tictime = I_GetPreciseTime() - ps_tictime; // Leave a certain amount of tics present in the net buffer as long as we've ran at least one tic this frame. - if (client && gamestate == GS_LEVEL && leveltime > 3 && neededtic <= gametic + cv_netticbuffer.value) + if (client && gamestate == GS_LEVEL && neededtic <= gametic + cv_netticbuffer.value) break; } }