Add item help texts all over the place

This commit is contained in:
Wuzzy 2017-03-11 01:51:06 +01:00
parent 5869df4ed0
commit 4caf0add5e
6 changed files with 26 additions and 0 deletions

View file

@ -35,6 +35,7 @@ for _, row in ipairs(wool.dyes) do
-- Node Definition
minetest.register_node("mcl_wool:"..name, {
description = desc.." Wool",
_doc_items_longdesc = "Wool is a decorational block which comes in many different colors.",
stack_max = 64,
is_ground_content = false,
tiles = {"wool_"..texture..".png"},
@ -45,6 +46,7 @@ for _, row in ipairs(wool.dyes) do
})
minetest.register_node("mcl_wool:"..name.."_carpet", {
description = desc.." Carpet",
_doc_items_longdesc = "Carpets are thin floor covers which come in many different colors.",
walkable = false,
is_ground_content = false,
tiles = {"wool_"..texture..".png"},