summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDS <vorunbekannt75@web.de>2017-06-10 13:49:28 +0200
committerLoïc Blot <nerzhul@users.noreply.github.com>2017-06-10 13:49:28 +0200
commit07be63b28747714903281a4051cecea0dc3e1cb7 (patch)
treea7e7d4277e09bd2b6b9e0f3e341c26fd758a29d2 /doc
parentab128e03ff555a8fc292352b0b21fc1075a4c008 (diff)
downloadminetest-07be63b28747714903281a4051cecea0dc3e1cb7.tar.gz
minetest-07be63b28747714903281a4051cecea0dc3e1cb7.tar.bz2
minetest-07be63b28747714903281a4051cecea0dc3e1cb7.zip
fix an example in lua_api (#5604)
Diffstat (limited to 'doc')
-rw-r--r--doc/lua_api.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt
index f3d3b1bca..2bbf18310 100644
--- a/doc/lua_api.txt
+++ b/doc/lua_api.txt
@@ -2711,9 +2711,9 @@ and `minetest.auth_reload` call the authetification handler.
* Example query for `"default:gold_ingot"` will return table:
{
- [1]={type = "cooking", width = 3, output = "default:gold_ingot",
+ [1]={method = "cooking", width = 3, output = "default:gold_ingot",
items = {1 = "default:gold_lump"}},
- [2]={type = "normal", width = 1, output = "default:gold_ingot 9",
+ [2]={method = "normal", width = 1, output = "default:gold_ingot 9",
items = {1 = "default:goldblock"}}
}
* `minetest.handle_node_drops(pos, drops, digger)`