diff options
Diffstat (limited to 'doc/lua_api.txt')
-rw-r--r-- | doc/lua_api.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index 803314925..f4e1fd230 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -2543,10 +2543,11 @@ Decoration definition (register_decoration) Chatcommand definition (register_chatcommand) { - params = "<name> <privilege>", -- short parameter description - description = "Remove privilege from player", -- full description - privs = {privs=true}, -- require the "privs" privilege to run - func = function(name, param), -- called when command is run + params = "<name> <privilege>", -- Short parameter description + description = "Remove privilege from player", -- Full description + privs = {privs=true}, -- Require the "privs" privilege to run + func = function(name, param), -- Called when command is run. + -- Returns boolean success and text output. } Detached inventory callbacks |