diff --git a/mods/ITEMS/mcl_flowerpots/nodes.lua b/mods/ITEMS/mcl_flowerpots/nodes.lua index 3afe10a59..2c19a59c0 100644 --- a/mods/ITEMS/mcl_flowerpots/nodes.lua +++ b/mods/ITEMS/mcl_flowerpots/nodes.lua @@ -28,6 +28,8 @@ local cubes = { minetest.register_node("mcl_flowerpots:flower_pot", { description = "Flower Pot", + _doc_items_longdesc = "Flower pots are decorational blocks in which flowers and other small plants can be placed.", + _doc_items_usagehelp = "Rightclick an empty flower pot while you wield a plant to place the plant. Flower pots can hold small flowers (not higher than 1 block), saplings, ferns, dead bushes and cacti. Rightclick a potted plant to retrieve the plant.", drawtype = "mesh", mesh = "flowerpot.obj", tiles = { diff --git a/mods/ITEMS/mcl_nether/init.lua b/mods/ITEMS/mcl_nether/init.lua index 767d86a6a..b24946ecb 100644 --- a/mods/ITEMS/mcl_nether/init.lua +++ b/mods/ITEMS/mcl_nether/init.lua @@ -44,6 +44,7 @@ minetest.register_node("mcl_nether:netherrack", { minetest.register_node("mcl_nether:magma", { description = "Magma Block", + _doc_items_longdesc = "Magma blocks are hot solid blocks which hurt anyone standing on it, unless they have fire resistance.", stack_max = 64, tiles = {{name="mcl_nether_magma.png", animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=1.5}}}, is_ground_content = true, @@ -62,6 +63,7 @@ minetest.register_node("mcl_nether:magma", { minetest.register_node("mcl_nether:soul_sand", { description = "Soul Sand", + _doc_items_longdesc = "Soul sand is a block from the Nether. One can only slowly walk on soul sand. The slowing effect is amplified when the soul sand is on top of ice, packed ice or a slime block.", stack_max = 64, tiles = {"mcl_nether_soul_sand.png"}, is_ground_content = true,