@Override
public boolean importRecipe(TileEntity tile, ItemIdentifierInventory inventory) {
if (!(tile instanceof TileAutoWorkbench))
return false;
TileAutoWorkbench bench = (TileAutoWorkbench) tile;
ItemStack result = bench.findRecipeOutput();
//ItemStack result = bench.getStackInSlot(TileAutoWorkbench.SLOT_RESULT);
if (result == null)
return false;