Fix main menu being unable to set secure settings
parent
abd4a79acb
commit
7bcbc0105b
|
@ -75,9 +75,10 @@ int ModApiUtil::l_get_us_time(lua_State *L)
|
||||||
}
|
}
|
||||||
|
|
||||||
#define CHECK_SECURE_SETTING(L, name) \
|
#define CHECK_SECURE_SETTING(L, name) \
|
||||||
if (name.compare(0, 7, "secure.") == 0) {\
|
if (ScriptApiSecurity::isSecure(L) && \
|
||||||
lua_pushliteral(L, "Attempt to set secure setting.");\
|
name.compare(0, 7, "secure.") == 0) { \
|
||||||
lua_error(L);\
|
lua_pushliteral(L, "Attempt to set secure setting."); \
|
||||||
|
lua_error(L); \
|
||||||
}
|
}
|
||||||
|
|
||||||
// setting_set(name, value)
|
// setting_set(name, value)
|
||||||
|
|
Loading…
Reference in New Issue