From 7d7e72196b0b59fe281d27d0e8c6269117f46d93 Mon Sep 17 00:00:00 2001 From: SNMetamorph <25657591+SNMetamorph@users.noreply.github.com> Date: Sat, 16 Mar 2024 21:26:56 +0400 Subject: [PATCH] engine: host: enabled printing current developer level --- engine/common/host.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/engine/common/host.c b/engine/common/host.c index e0e83337..625ca656 100644 --- a/engine/common/host.c +++ b/engine/common/host.c @@ -1187,6 +1187,11 @@ static void Host_InitCommon( int argc, char **argv, const char *progname, qboole Con_Printf( "^3BUGCOMP^7: GoldSrc bug-compatibility enabled\n" ); } + // print current developer level to simplify processing users feedback + if( developer > 0 ) { + Con_Printf( "Developer level: ^3%i\n", developer ); + } + Cmd_AddCommand( "exec", Host_Exec_f, "execute a script file" ); Cmd_AddCommand( "memlist", Host_MemStats_f, "prints memory pool information" ); Cmd_AddRestrictedCommand( "userconfigd", Host_Userconfigd_f, "execute all scripts from userconfig.d" );