From 83a72a6e3a02f17654f2ac15ae93575d8e88c991 Mon Sep 17 00:00:00 2001 From: Vincent Herbet Date: Thu, 13 Aug 2015 12:04:31 +0200 Subject: [PATCH] Fix MPROP_NOCOLORS menu property not working --- amxmodx/newmenus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amxmodx/newmenus.cpp b/amxmodx/newmenus.cpp index 4eee4e19..e8e1e52f 100755 --- a/amxmodx/newmenus.cpp +++ b/amxmodx/newmenus.cpp @@ -1018,7 +1018,7 @@ static cell AMX_NATIVE_CALL menu_setprop(AMX *amx, cell *params) } case MPROP_NOCOLORS: { - pMenu->m_AutoColors = *get_amxaddr(amx, params[3]) ? true : false; + pMenu->m_AutoColors = *get_amxaddr(amx, params[3]) ? false : true; break; } case MPROP_PADMENU: