Storage Bus no longer shows items that cannot be extracted.

This commit is contained in:
AlgorithmX2
2014-08-11 22:56:33 -05:00
parent 0e65911673
commit feb7d7be95
3 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ public class MEMonitorIInventory implements IMEInventory<IAEItemStack>, IMEMonit
for (ItemSlot is : adaptor)
{
CachedItemStack old = memory.get( is.slot );
ItemStack newIS = is == null ? null : is.getItemStack();
ItemStack newIS = is == null || is.isExtractable == false ? null : is.getItemStack();
ItemStack oldIS = old == null ? null : old.itemStack;
if ( isDiffrent( newIS, oldIS ) )