diff options
author | DS <vorunbekannt75@web.de> | 2017-06-10 13:49:28 +0200 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-06-10 13:49:28 +0200 |
commit | 07be63b28747714903281a4051cecea0dc3e1cb7 (patch) | |
tree | a7e7d4277e09bd2b6b9e0f3e341c26fd758a29d2 /doc/lua_api.txt | |
parent | ab128e03ff555a8fc292352b0b21fc1075a4c008 (diff) | |
download | minetest-07be63b28747714903281a4051cecea0dc3e1cb7.tar.gz minetest-07be63b28747714903281a4051cecea0dc3e1cb7.tar.bz2 minetest-07be63b28747714903281a4051cecea0dc3e1cb7.zip |
fix an example in lua_api (#5604)
Diffstat (limited to 'doc/lua_api.txt')
-rw-r--r-- | doc/lua_api.txt | 4 |
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)` |