Fix doc/lua_api.txt
authorPerttu Ahola <celeron55@gmail.com>
Sat, 31 Mar 2012 11:20:04 +0000 (14:20 +0300)
committerPerttu Ahola <celeron55@gmail.com>
Sat, 31 Mar 2012 11:27:04 +0000 (14:27 +0300)
doc/lua_api.txt

index b068a8a019f77044c14298c6f423cf6dd94a5fdc..a03d9a9e1b127ed76a3ff5480646558c95edac0e 100644 (file)
@@ -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 = "<name> <privilege>", -- 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
 }