From 50b8aed01c988de4c173ecb72b12ced667d0d595 Mon Sep 17 00:00:00 2001 From: Jonathan Raphael Joachim Kolberg <bulldog98@freenet.de> Date: Fri, 26 Jul 2013 19:29:16 +0200 Subject: [PATCH] Finaly fixed the statements --- technic/machines/mv/alloy_furnace.lua | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/technic/machines/mv/alloy_furnace.lua b/technic/machines/mv/alloy_furnace.lua index 1809262..e70df1c 100644 --- a/technic/machines/mv/alloy_furnace.lua +++ b/technic/machines/mv/alloy_furnace.lua @@ -260,9 +260,9 @@ end meta:set_int("tube_time", tube_time) - -- The machine shuts down if we have nothing to smelt and no tube is connected - -- or if we have nothing to send with a tube connected. - if inv:is_empty("src") and (not output_tube_connected or inv:is_empty("dst")) then + -- The machine shuts down if we have nothing to smelt since we tube stuff + -- out while being idle. + if inv:is_empty("src") then next_state = 1 end ---------------------- -- Gitblit v1.8.0