projects
/
oweals
/
minetest.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
abd4a79
)
Fix main menu being unable to set secure settings
author
ShadowNinja
<shadowninja@minetest.net>
Thu, 3 Mar 2016 05:57:19 +0000
(
00:57
-0500)
committer
ShadowNinja
<shadowninja@minetest.net>
Thu, 3 Mar 2016 05:57:19 +0000
(
00:57
-0500)
src/script/lua_api/l_util.cpp
patch
|
blob
|
history
diff --git
a/src/script/lua_api/l_util.cpp
b/src/script/lua_api/l_util.cpp
index cc4467bb61bec5bc27d570c411947434b92b343e..df46925d184e2b08fd33bf1c0a90388b304f5819 100644
(file)
--- a/
src/script/lua_api/l_util.cpp
+++ b/
src/script/lua_api/l_util.cpp
@@
-75,9
+75,10
@@
int ModApiUtil::l_get_us_time(lua_State *L)
}
#define CHECK_SECURE_SETTING(L, name) \
- if (name.compare(0, 7, "secure.") == 0) {\
- lua_pushliteral(L, "Attempt to set secure setting.");\
- lua_error(L);\
+ if (ScriptApiSecurity::isSecure(L) && \
+ name.compare(0, 7, "secure.") == 0) { \
+ lua_pushliteral(L, "Attempt to set secure setting."); \
+ lua_error(L); \
}
// setting_set(name, value)