engine: server: allow sending logs to remote server without log on to match GoldSrc behavior

This commit is contained in:
Alibek Omarov
2025-09-25 16:29:32 +05:00
parent 53bf302868
commit 1b1cff1cae

View File

@@ -106,7 +106,7 @@ void Log_Printf( const char *fmt, ... )
struct tm *today;
int len;
if( !svs.log.active )
if( !svs.log.net_log && !svs.log.active )
return;
time( &ltime );