summaryrefslogtreecommitdiff
path: root/doc/lua_api.txt
diff options
context:
space:
mode:
authorDuane <duane@duanerobertson.com>2016-07-11 09:46:01 -0500
committerparamat <mat.gregory@virginmedia.com>2016-07-12 20:23:46 +0100
commitd6865c4d8d0eb7aaf2d35447ab01e06ef8249010 (patch)
tree096c2400b9dfe07585ae658eb46c40a12270a048 /doc/lua_api.txt
parent91f68e7d11e89dbc73ec259eb057de51099dfe8c (diff)
downloadminetest-d6865c4d8d0eb7aaf2d35447ab01e06ef8249010.tar.gz
minetest-d6865c4d8d0eb7aaf2d35447ab01e06ef8249010.tar.bz2
minetest-d6865c4d8d0eb7aaf2d35447ab01e06ef8249010.zip
Lua_api.txt: Fix description of node drop behaviour
Diffstat (limited to 'doc/lua_api.txt')
-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 a59a9c0f2..12b0a9299 100644
--- a/doc/lua_api.txt
+++ b/doc/lua_api.txt
@@ -3612,8 +3612,8 @@ Definition tables
max_items = 1, -- Maximum number of items to drop.
items = { -- Choose max_items randomly from this list.
{
- items = {"foo:bar", "baz:frob"}, -- Choose one item randomly from this list.
- rarity = 1, -- Probability of getting is 1 / rarity.
+ items = {"foo:bar", "baz:frob"}, -- Items to drop.
+ rarity = 1, -- Probability of dropping is 1 / rarity.
},
},
},