Storage Bus no longer shows items that cannot be extracted.
This commit is contained in:
@@ -341,8 +341,12 @@ public class AdaptorIInventory extends InventoryAdaptor
|
||||
@Override
|
||||
public ItemSlot next()
|
||||
{
|
||||
is.slot = x;
|
||||
is.setItemStack( i.getStackInSlot( x++ ) );
|
||||
ItemStack iss = i.getStackInSlot( x );
|
||||
|
||||
is.isExtractable = canRemoveStackFromSlot( x, iss );
|
||||
is.setItemStack( iss );
|
||||
|
||||
is.slot = x++;
|
||||
return is;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user