Update newmenus.cpp

This commit is contained in:
OciXCrom 2018-08-03 14:37:23 +02:00 committed by GitHub
parent 11a3b6bd0e
commit 1724d4bdd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1122,14 +1122,14 @@ static cell AMX_NATIVE_CALL menu_getprop(AMX *amx, cell *params)
}
case MPROP_EXITNAME:
{
if(pMenu->m_NeverExit == false && pMenu->m_ForceExit == false)
return 1;
else if(pMenu->m_NeverExit == false && pMenu->m_ForceExit == true)
return 2;
else if(pMenu->m_NeverExit == true && pMenu->m_ForceExit == false)
return -1;
if (len < 4)
{
LogError(amx, AMX_ERR_NATIVE, "Expected 4 parameters");
return 0;
}
return 0;
set_amxstring(amx, params[3], pMenu->m_OptNames[abs(MENU_EXIT)].chars(), params[4]);
break;
}
case MPROP_TITLE:
{