From e70f9a67b85ef3184f058cd10480d32ef68d14eb Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Fri, 26 Jul 2024 11:08:34 +0300 Subject: [PATCH] engine: host: always enable console for dedicated --- engine/common/host.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/common/host.c b/engine/common/host.c index c798998d..0cdb66fb 100644 --- a/engine/common/host.c +++ b/engine/common/host.c @@ -1028,8 +1028,8 @@ static void Host_InitCommon( int argc, char **argv, const char *progname, qboole } #endif - // always enable console for Quake - if( !host.allow_console && ( Sys_CheckParm( "-console" ) || !Q_strnicmp( exename, "quake", 5 ))) + // always enable console for Quake and dedicated + if( !host.allow_console && ( Host_IsDedicated() || Sys_CheckParm( "-console" ) || !Q_strnicmp( exename, "quake", 5 ))) host.allow_console = true; // member console allowing