From d10f8944edd0fb58d69bc9cddcc8d435e74515ad Mon Sep 17 00:00:00 2001 From: MysticTempest Date: Wed, 18 May 2022 05:30:05 -0500 Subject: [PATCH 1/3] Fix blast_furnace fuel not being consumed at twice the rate. --- mods/ITEMS/mcl_blast_furnace/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_blast_furnace/init.lua b/mods/ITEMS/mcl_blast_furnace/init.lua index 1d6a7479a..fed5bb0bc 100644 --- a/mods/ITEMS/mcl_blast_furnace/init.lua +++ b/mods/ITEMS/mcl_blast_furnace/init.lua @@ -329,7 +329,7 @@ local function blast_furnace_node_timer(pos, elapsed) elseif active then el = math.min(el, fuel_totaltime - fuel_time) -- The furnace is currently active and has enough fuel - fuel_time = fuel_time + el + fuel_time = (fuel_time + el) *2 --multiply speed of fuel consumption to match proper output end -- If there is a cookable item then check if it is ready yet From 8426e7826a96b11301e175fb633b1284efd1fb9e Mon Sep 17 00:00:00 2001 From: cora Date: Wed, 18 May 2022 13:30:00 +0200 Subject: [PATCH 2/3] Fix smoker fuel not being burned at twice the rate. --- mods/ITEMS/mcl_smoker/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_smoker/init.lua b/mods/ITEMS/mcl_smoker/init.lua index 93faf04ec..b49ba1f1f 100644 --- a/mods/ITEMS/mcl_smoker/init.lua +++ b/mods/ITEMS/mcl_smoker/init.lua @@ -329,7 +329,7 @@ local function smoker_node_timer(pos, elapsed) elseif active then el = math.min(el, fuel_totaltime - fuel_time) -- The furnace is currently active and has enough fuel - fuel_time = fuel_time + el + fuel_time = ( fuel_time + el ) * 2 end -- If there is a cookable item then check if it is ready yet From c4e51650f81a40b0fc93ccc791c8bc6d096956bb Mon Sep 17 00:00:00 2001 From: cora Date: Wed, 18 May 2022 13:37:34 +0200 Subject: [PATCH 3/3] smoker & bfurnace: More concise short descriptions --- mods/ITEMS/mcl_blast_furnace/init.lua | 2 +- mods/ITEMS/mcl_smoker/init.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/ITEMS/mcl_blast_furnace/init.lua b/mods/ITEMS/mcl_blast_furnace/init.lua index fed5bb0bc..168c28bd5 100644 --- a/mods/ITEMS/mcl_blast_furnace/init.lua +++ b/mods/ITEMS/mcl_blast_furnace/init.lua @@ -414,7 +414,7 @@ end minetest.register_node("mcl_blast_furnace:blast_furnace", { description = S("Blast Furnace"), - _tt_help = S("A blast furnace is a block that smelts ores, raw metals, iron and gold armor and tools, similar to a furnace, but at twice the speed."), + _tt_help = S("Smelts ores faster than furnace"), _doc_items_longdesc = S("Blast Furnaces smelt several items, mainly ores and armor, using a furnace fuel, into something else."), _doc_items_usagehelp = S([[ diff --git a/mods/ITEMS/mcl_smoker/init.lua b/mods/ITEMS/mcl_smoker/init.lua index b49ba1f1f..e45a2712c 100644 --- a/mods/ITEMS/mcl_smoker/init.lua +++ b/mods/ITEMS/mcl_smoker/init.lua @@ -415,7 +415,7 @@ end minetest.register_node("mcl_smoker:smoker", { description = S("Smoker"), - _tt_help = S("A smoker is a type of furnace that cooks food items, similar to a furnace, but twice as fast."), + _tt_help = S("Cooks food faster than furnace"), _doc_items_longdesc = S("Smokers cook several items, using a furnace fuel, into something else, but twice as fast as a normal furnace"), _doc_items_usagehelp = S([[