From 8426e7826a96b11301e175fb633b1284efd1fb9e Mon Sep 17 00:00:00 2001 From: cora Date: Wed, 18 May 2022 13:30:00 +0200 Subject: [PATCH] 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