return -1;
}
private ItemStack findMatchingRecipe()
{
InventoryCrafting craft = new RemoteInventoryCrafting();
for(int i = 0; i < 9; i++)
{
craft.setInventorySlotContents(i, (_inventory[i] == null ? null : _inventory[i].copy()));
}
return CraftingManager.getInstance().findMatchingRecipe(craft, worldObj);
}