diff --git a/src/main/java/techreborn/tiles/TileAutoCraftingTable.java b/src/main/java/techreborn/tiles/TileAutoCraftingTable.java index 21590197a..7692d08da 100644 --- a/src/main/java/techreborn/tiles/TileAutoCraftingTable.java +++ b/src/main/java/techreborn/tiles/TileAutoCraftingTable.java @@ -89,9 +89,11 @@ public class TileAutoCraftingTable extends TilePowerAcceptor implements IContain public IRecipe getIRecipe() { if (customRecipe) { InventoryCrafting crafting = getCraftingInventory(); - for (IRecipe testRecipe : CraftingManager.REGISTRY) { - if (testRecipe.matches(crafting, world)) { - return testRecipe; + if(!crafting.isEmpty()){ + for (IRecipe testRecipe : CraftingManager.REGISTRY) { + if (testRecipe.matches(crafting, world)) { + return testRecipe; + } } } }