Add warning when disabling secure.enable_security (#9943)
parent
a2199bf622
commit
0f1f8e4a0f
|
@ -62,6 +62,10 @@ ServerScripting::ServerScripting(Server* server):
|
|||
|
||||
if (g_settings->getBool("secure.enable_security")) {
|
||||
initializeSecurity();
|
||||
} else {
|
||||
warningstream << "\\!/ Mod security should never be disabled, as it allows any mod to "
|
||||
<< "access the host machine."
|
||||
<< "Mods should use minetest.request_insecure_environment() instead \\!/" << std::endl;
|
||||
}
|
||||
|
||||
lua_getglobal(L, "core");
|
||||
|
|
Loading…
Reference in New Issue