diff options
author | Duane <duane@duanerobertson.com> | 2016-07-11 09:46:01 -0500 |
---|---|---|
committer | paramat <mat.gregory@virginmedia.com> | 2016-07-12 20:23:46 +0100 |
commit | d6865c4d8d0eb7aaf2d35447ab01e06ef8249010 (patch) | |
tree | 096c2400b9dfe07585ae658eb46c40a12270a048 /doc | |
parent | 91f68e7d11e89dbc73ec259eb057de51099dfe8c (diff) | |
download | minetest-d6865c4d8d0eb7aaf2d35447ab01e06ef8249010.tar.gz minetest-d6865c4d8d0eb7aaf2d35447ab01e06ef8249010.tar.bz2 minetest-d6865c4d8d0eb7aaf2d35447ab01e06ef8249010.zip |
Lua_api.txt: Fix description of node drop behaviour
Diffstat (limited to 'doc')
-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 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. }, }, }, |