summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorANAND <ClobberXD@gmail.com>2019-09-08 18:34:44 +0800
committerSmallJoker <SmallJoker@users.noreply.github.com>2019-09-08 12:34:44 +0200
commit52e3b4bc7229895c2e9ac37d72bead40f0c7cf74 (patch)
tree4dc5486eb91a24aafcf1057bd70a1511d1d4ae52 /doc
parent36bfc67574aaa54c3e7f814ec7c5336e9dbc1ac4 (diff)
downloadminetest-52e3b4bc7229895c2e9ac37d72bead40f0c7cf74.tar.gz
minetest-52e3b4bc7229895c2e9ac37d72bead40f0c7cf74.tar.bz2
minetest-52e3b4bc7229895c2e9ac37d72bead40f0c7cf74.zip
lua_api.txt: Improve privilege definition (#8912)
Diffstat (limited to 'doc')
-rw-r--r--doc/lua_api.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt
index 130610328..76253300f 100644
--- a/doc/lua_api.txt
+++ b/doc/lua_api.txt
@@ -7023,10 +7023,11 @@ Privilege definition
Used by `minetest.register_privilege`.
{
- description = "Can teleport", -- Privilege description
+ description = "",
+ -- Privilege description
- give_to_singleplayer = false,
- -- Whether to grant the privilege to singleplayer (default true).
+ give_to_singleplayer = true,
+ -- Whether to grant the privilege to singleplayer.
give_to_admin = true,
-- Whether to grant the privilege to the server admin.