diff options
author | red-001 <red-001@outlook.ie> | 2017-06-07 08:09:06 +0100 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-06-07 09:09:06 +0200 |
commit | c91a8c7061c83a33cca929859ea811afb985ac0a (patch) | |
tree | 28d90cc8f57d35eedb2d25ffd6456ffddb80adf1 /src/script/lua_api/l_client.cpp | |
parent | 6c558744179b52607d552d28bf6cc6a4e49a2a14 (diff) | |
download | minetest-c91a8c7061c83a33cca929859ea811afb985ac0a.tar.gz minetest-c91a8c7061c83a33cca929859ea811afb985ac0a.tar.bz2 minetest-c91a8c7061c83a33cca929859ea811afb985ac0a.zip |
[CSM] Add function to get player privileges (#5933)
* [CSM] Add function to get player privileges + move related help functions to common
* Added @Zeno- const
Diffstat (limited to 'src/script/lua_api/l_client.cpp')
-rw-r--r-- | src/script/lua_api/l_client.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/script/lua_api/l_client.cpp b/src/script/lua_api/l_client.cpp index 3c2955bcd..eab7bdfae 100644 --- a/src/script/lua_api/l_client.cpp +++ b/src/script/lua_api/l_client.cpp @@ -329,6 +329,16 @@ int ModApiClient::l_take_screenshot(lua_State *L) return 0; } +int ModApiClient::l_get_privilege_list(lua_State *L) +{ + const Client *client = getClient(L); + lua_newtable(L); + for (const std::string &priv : client->getPrivilegeList()) { + lua_pushboolean(L, true); + lua_setfield(L, -2, priv.c_str()); + } + return 1; +} void ModApiClient::Initialize(lua_State *L, int top) { API_FCT(get_current_modname); @@ -353,4 +363,5 @@ void ModApiClient::Initialize(lua_State *L, int top) API_FCT(get_item_def); API_FCT(get_node_def); API_FCT(take_screenshot); + API_FCT(get_privilege_list); } |