From d10f8944edd0fb58d69bc9cddcc8d435e74515ad Mon Sep 17 00:00:00 2001 From: MysticTempest Date: Wed, 18 May 2022 05:30:05 -0500 Subject: [PATCH] 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