From a97daa7c2c95eeef65ef0a5488158366b5d32d3e Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sun, 6 Aug 2017 23:22:27 +0200 Subject: [PATCH] Furnace: Stop cooking if output is full --- mods/ITEMS/mcl_furnaces/init.lua | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/mods/ITEMS/mcl_furnaces/init.lua b/mods/ITEMS/mcl_furnaces/init.lua index 301c2498f..b6481e528 100644 --- a/mods/ITEMS/mcl_furnaces/init.lua +++ b/mods/ITEMS/mcl_furnaces/init.lua @@ -184,10 +184,12 @@ local function furnace_node_timer(pos, elapsed) fuel_time = fuel_time + elapsed -- If there is a cookable item then check if it is ready yet if cookable then - src_time = src_time + elapsed - if src_time >= cooked.time then - -- Place result in dst list if possible - if inv:room_for_item("dst", cooked.item) then + -- Successful cooking requires space in dst slot and time + if inv:room_for_item("dst", cooked.item) then + src_time = src_time + elapsed + + -- Place result in dst list if done + if src_time >= cooked.time then inv:add_item("dst", cooked.item) inv:set_stack("src", 1, aftercooked.items[1]) @@ -197,11 +199,12 @@ local function furnace_node_timer(pos, elapsed) inv:set_stack("fuel", 1, "mcl_buckets:bucket_water") end end - end - -- Note: If there was not enough space in the output, the item is not - -- cooked and the cooking progress is lost. - -- Always reset cooking time + src_time = 0 + update = true + end + elseif src_time ~= 0 then + -- If output slot is occupied, stop cooking src_time = 0 update = true end