diff options
author | Wuzzy <almikes@aol.com> | 2016-08-03 22:34:32 +0200 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-08-03 22:34:32 +0200 |
commit | 854659f135f65e16dcd532594ed909554e4b66ac (patch) | |
tree | a04295a875eace993a644e7271c1381e3b3567af /init.lua | |
parent | 7ba9a7d38d3006f66a9b61d0a6062184ded60fcf (diff) |
Add category descriptions
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -169,6 +169,7 @@ end doc.new_category("nodes", { name = "Blocks", + description = "Item reference of blocks and other things which are capable of occupying space", build_formspec = function(data) if data then local longdesc = data.longdesc @@ -478,6 +479,7 @@ doc.new_category("nodes", { doc.new_category("tools", { name = "Tools and weapons", + description = "Item reference of all wieldable tools and weapons", build_formspec = function(data) if data then local longdesc = data.longdesc @@ -547,6 +549,7 @@ doc.new_category("tools", { doc.new_category("craftitems", { name = "Miscellaneous items", + description = "Item reference of items which are neither blocks, tools or weapons (esp. crafting items)", build_formspec = function(data) if data then local longdesc = data.longdesc |