From 88dfa269501482e0328a6ef71be3b0c76873bd0b Mon Sep 17 00:00:00 2001 From: James R Date: Fri, 21 Feb 2020 20:49:08 -0800 Subject: [PATCH] Remove a dumb time step maybe I dunno So with this odd conditional, if the game starts too fast (like with NOMD5), the intro ticker skips a few tics needed to start playing sounds. --- src/d_clisrv.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/d_clisrv.c b/src/d_clisrv.c index 77118110e..d3c9c4e68 100644 --- a/src/d_clisrv.c +++ b/src/d_clisrv.c @@ -4925,13 +4925,7 @@ void NetUpdate(void) if (realtics <= 0) // nothing new to update return; - if (realtics > 5) - { - if (server) - realtics = 1; - else - realtics = 5; - } + realtics = 1; gametime = nowtime;