fixed a condition with mv machines so as to not power down machines with stuff to grind/smelt but nothing to tube out

This commit is contained in:
hdastwb 2013-07-23 21:43:36 -04:00
parent e38f6f0983
commit 2d7f750d9a
3 changed files with 3 additions and 6 deletions

View File

@ -262,8 +262,7 @@ minetest.register_abm(
-- 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 (not output_tube_connected and inv:is_empty("src"))
or ( output_tube_connected and inv:is_empty("dst")) then
if inv:is_empty("src") and (not output_tube_connected or inv:is_empty("dst")) then
next_state = 1
end
----------------------

View File

@ -262,8 +262,7 @@ minetest.register_abm(
-- 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 (not output_tube_connected and inv:is_empty("src"))
or ( output_tube_connected and inv:is_empty("dst")) then
if inv:is_empty("src") and (not output_tube_connected or inv:is_empty("dst")) then
next_state = 1
end
----------------------

View File

@ -239,8 +239,7 @@ minetest.register_abm(
-- The machine shuts down if we have nothing to grind and no tube is connected
-- or if we have nothing to send with a tube connected.
if (not output_tube_connected and inv:is_empty("src"))
or ( output_tube_connected and inv:is_empty("dst")) then
if inv:is_empty("src") and (not output_tube_connected or inv:is_empty("dst")) then
next_state = 1
end