From 9c3830dd35e7fdf601d83fcd969b67dd3fe189d3 Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Sat, 2 Jun 2012 15:54:42 +0300 Subject: [PATCH] Use proper furnace cook time --- games/minimal/mods/default/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games/minimal/mods/default/init.lua b/games/minimal/mods/default/init.lua index 12d4eb37b..b117befbd 100644 --- a/games/minimal/mods/default/init.lua +++ b/games/minimal/mods/default/init.lua @@ -1341,7 +1341,7 @@ minetest.register_abm({ was_active = true meta:set_float("fuel_time", meta:get_float("fuel_time") + 1) meta:set_float("src_time", meta:get_float("src_time") + 1) - if cooked and cooked.item and meta:get_float("src_time") >= 3 then + if cooked and cooked.item and meta:get_float("src_time") >= cooked.time then -- check if there's room for output in "dst" list if inv:room_for_item("dst",cooked.item) then -- Put result in "dst" list