From 998c0d2a9d97d54b03c0892235cf17d60f18961e Mon Sep 17 00:00:00 2001 From: John FrostFox <john.frostfox@gmail.com> Date: Thu, 7 Oct 2021 23:43:24 +0300 Subject: [PATCH] Fix console/terminal/logfile flood If you really want to look at all messages, define DEBUGFILE --- 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 3bce28e4d..519dec570 100755 --- a/src/d_clisrv.c +++ b/src/d_clisrv.c @@ -1621,7 +1621,7 @@ static void CL_ReloadReceivedSavegame(void) if (simtic > gametic && !canSimulate) { simtic = gametic; - CONS_Printf("Not simulating, clearing local savestates...\n"); + DEBFILE("Not simulating, clearing local savestates...\n"); // we don't load our local gamestate because we are gonna load the server's one InvalidateSavestates(); } -- GitLab