From 4f7196a7e80f3d9f59cee936ed4cb04213b2a685 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 10 Mar 2017 23:48:03 +0100 Subject: [PATCH] Add furnace and sponge help texts --- mods/ITEMS/mcl_furnaces/init.lua | 2 ++ mods/ITEMS/mcl_sponges/init.lua | 2 ++ 2 files changed, 4 insertions(+) diff --git a/mods/ITEMS/mcl_furnaces/init.lua b/mods/ITEMS/mcl_furnaces/init.lua index 8a221d7b4..a696dbcbe 100644 --- a/mods/ITEMS/mcl_furnaces/init.lua +++ b/mods/ITEMS/mcl_furnaces/init.lua @@ -270,6 +270,8 @@ end minetest.register_node("mcl_furnaces:furnace", { description = "Furnace", + _doc_items_longdesc = "Furnaces cook or smelt several items, using a furnace fuel, into something else.", + _doc_items_usagehelp = "Right-click the furnace to view it. Place a furnace fuel in the lower slot and the source material in the upper slot. The furnace will slowly use its fuel to smelt the item. The result will be placed into the output slot at the right side.", tiles = { "default_furnace_top.png", "default_furnace_bottom.png", "default_furnace_side.png", "default_furnace_side.png", diff --git a/mods/ITEMS/mcl_sponges/init.lua b/mods/ITEMS/mcl_sponges/init.lua index 1370f0487..4130a7fb2 100644 --- a/mods/ITEMS/mcl_sponges/init.lua +++ b/mods/ITEMS/mcl_sponges/init.lua @@ -18,6 +18,7 @@ end minetest.register_node("mcl_sponges:sponge", { description = "Sponge", + _doc_items_longdesc = "Sponges are blocks which remove water around them when they are placed or come in contact with water, turning it into a wet sponge.", drawtype = "normal", is_ground_content = false, tiles = {"mcl_sponges_sponge.png"}, @@ -74,6 +75,7 @@ minetest.register_node("mcl_sponges:sponge", { minetest.register_node("mcl_sponges:sponge_wet", { description = "Wet Sponge", + _doc_items_longdesc = "Wet sponges can be dried in the furnace to turn it into (dry) sponge. When there's an empty bucket in the fuel slot of a furnace, water will pour into the bucket.", drawtype = "normal", is_ground_content = false, tiles = {"mcl_sponges_sponge_wet.png"},