From 2d7f750d9a734e2c84cc1ee14746a4ee2f8757e6 Mon Sep 17 00:00:00 2001
From: hdastwb <hdastwb@hdastwb.heliohost.org>
Date: Wed, 24 Jul 2013 03:43:36 +0200
Subject: [PATCH] fixed a condition with mv machines so as to not power down machines with stuff to grind/smelt but nothing to tube out

---
 technic/machines/mv/grinder.lua |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/technic/machines/mv/grinder.lua b/technic/machines/mv/grinder.lua
index e993794..84710c9 100644
--- a/technic/machines/mv/grinder.lua
+++ b/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
 

--
Gitblit v1.8.0