From f734a3c5fe8b3b42b2f5c7ae509df7f6ce71739b Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 19 Dec 2019 00:37:10 +1000 Subject: [PATCH] Never show mapinfo warnings in the menu code, since they don't apply to the map being played --- qcsrc/common/mapinfo.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/common/mapinfo.qc b/qcsrc/common/mapinfo.qc index 3e6478b2d..1d6f4897b 100644 --- a/qcsrc/common/mapinfo.qc +++ b/qcsrc/common/mapinfo.qc @@ -9,10 +9,10 @@ #include #endif -bool autocvar_g_mapinfo_ignore_warnings; #ifdef MENUQC -#define WARN_COND (!autocvar_g_mapinfo_ignore_warnings) +#define WARN_COND false #else +bool autocvar_g_mapinfo_ignore_warnings; #define WARN_COND (!autocvar_g_mapinfo_ignore_warnings && MapInfo_Map_bspname == mi_shortname) #endif -- 2.39.2