Fixed Issue with Interface and Gui, and Derpy Automation( Hoppers )

This commit is contained in:
AlgorithmX2
2014-01-30 19:23:12 -06:00
parent d10033fb50
commit 79a8da50a8
4 changed files with 26 additions and 3 deletions
+4 -2
View File
@@ -319,6 +319,8 @@ public class DualityInterface implements IGridTickable, ISegmentedInventory, ISt
public void onInventoryChanged()
{
for (int slot = 0; slot < storage.getSizeInventory(); slot++)
onChangeInventory( storage, slot, InvOperation.onInventoryChanged, null, null );
}
@Override
@@ -360,8 +362,8 @@ public class DualityInterface implements IGridTickable, ISegmentedInventory, ISt
public boolean hasWorkToDo()
{
return requireWork[0] != null || requireWork[1] != null || requireWork[2] != null || requireWork[3] != null || requireWork[4] != null || requireWork[5] != null
|| requireWork[6] != null || requireWork[7] != null;
return requireWork[0] != null || requireWork[1] != null || requireWork[2] != null || requireWork[3] != null || requireWork[4] != null
|| requireWork[5] != null || requireWork[6] != null || requireWork[7] != null;
}
private boolean updateStorage()