}
@Override
public ItemStack getMultipleItems(ItemIdentifier itemIdent, int count) {
//check that we can actually get what we want
ItemIdentifierStack content = getContents();
if(content == null) return null;
if(!content.getItem().equals(itemIdent)) return null;
if(content.getStackSize() < count) return null;
//set up the finished stack to return
ItemStack resultstack = content.makeNormalStack();
resultstack.stackSize = count;
//empty input slots first
for(int i = 1; count > 0 && i < 3; i++) {
ItemStack stack = ((IInventory)_tile).getStackInSlot(i);