RealBadAngel
2013-07-24 f4d9a1e4e70185418d16328e5f733fed798c37c5
Merge pull request #64 from hdastwb/mvidlecond

fix the mv tube-enabled idle condition
3 files modified
9 ■■■■■ changed files
technic/machines/mv/alloy_furnace.lua 3 ●●●● patch | view | raw | blame | history
technic/machines/mv/electric_furnace.lua 3 ●●●● patch | view | raw | blame | history
technic/machines/mv/grinder.lua 3 ●●●● patch | view | raw | blame | history
technic/machines/mv/alloy_furnace.lua
@@ -262,8 +262,7 @@
           -- 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
           ----------------------
technic/machines/mv/electric_furnace.lua
@@ -262,8 +262,7 @@
           
           -- 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
        ----------------------
technic/machines/mv/grinder.lua
@@ -239,8 +239,7 @@
            -- 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