From: Perttu Ahola Date: Sat, 31 Mar 2012 11:20:04 +0000 (+0300) Subject: Fix doc/lua_api.txt X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=96ee73f79018c8aae22a392af6f66f9a05cb0174;p=zefram%2Fminetest%2Fminetest_engine.git Fix doc/lua_api.txt --- diff --git a/doc/lua_api.txt b/doc/lua_api.txt index b068a8a0..a03d9a9e 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -543,7 +543,7 @@ minetest.dir_to_facedir(dir) minetest.dir_to_wallmounted(dir) ^ Convert a vector to a wallmounted value, used for paramtype2="wallmounted" minetest.get_node_drops(nodename, toolname) -^ Get list of ItemStacks. +^ Returns list of item names. ^ Note: This will be removed or modified in a future version. Defaults for the on_* item definition functions: @@ -944,7 +944,7 @@ Chatcommand definition (register_chatcommand) { params = " ", -- short parameter description description = "Remove privilege from player", -- full description - privs = {privs=true}}, -- require the "privs" privilege to run + privs = {privs=true}, -- require the "privs" privilege to run func = function(name, param), -- called when command is run }