aboutsummaryrefslogtreecommitdiff
path: root/src/script/cpp_api/s_security.cpp
diff options
context:
space:
mode:
authorLejo <Lejo_1@web.de>2021-11-26 19:31:05 +0100
committerGitHub <noreply@github.com>2021-11-26 19:31:05 +0100
commitb9051386ae296a6112383725bc8bfcd96dc9a226 (patch)
treee3dbb8998a73e19b6b0bc6c24d7d9f3515ed6ea2 /src/script/cpp_api/s_security.cpp
parent7a1464d783742512fdc6e0a083ffadd0ce63c1b4 (diff)
downloadhax-minetest-server-b9051386ae296a6112383725bc8bfcd96dc9a226.tar.gz
hax-minetest-server-b9051386ae296a6112383725bc8bfcd96dc9a226.zip
Add Lua bitop library (#9847)
Diffstat (limited to 'src/script/cpp_api/s_security.cpp')
-rw-r--r--src/script/cpp_api/s_security.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/script/cpp_api/s_security.cpp b/src/script/cpp_api/s_security.cpp
index 580042ec2..5faf8cc80 100644
--- a/src/script/cpp_api/s_security.cpp
+++ b/src/script/cpp_api/s_security.cpp
@@ -106,6 +106,7 @@ void ScriptApiSecurity::initializeSecurity()
"string",
"table",
"math",
+ "bit"
};
static const char *io_whitelist[] = {
"close",
@@ -298,6 +299,7 @@ void ScriptApiSecurity::initializeSecurityClient()
"string",
"table",
"math",
+ "bit",
};
static const char *os_whitelist[] = {
"clock",
@@ -834,4 +836,3 @@ int ScriptApiSecurity::sl_os_remove(lua_State *L)
lua_call(L, 1, 2);
return 2;
}
-