From 53c5a33ffdab05561b926672ba5a6f23e11dae6f Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sat, 28 Feb 2026 20:39:34 +0500 Subject: [PATCH] engine: only switch to console on Host_Error when developer mode is enabled --- engine/common/host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/common/host.c b/engine/common/host.c index 8a75a48b..9f81b23b 100644 --- a/engine/common/host.c +++ b/engine/common/host.c @@ -838,7 +838,7 @@ void GAME_EXPORT Host_Error( const char *error, ... ) else { Con_Printf( S_RED "%s" S_DEFAULT ": %s", __func__, hosterror1 ); - if( host.allow_console ) + if( host_developer.value ) { UI_SetActiveMenu( false ); Key_SetKeyDest( key_console );