From 0ca18ade97b02499d8567398ad0579226d46b1c7 Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Sun, 17 Mar 2019 21:50:26 +0000 Subject: [PATCH] Fix a bug with the auto crafting table --- src/main/java/techreborn/tiles/tier1/TileAutoCraftingTable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/techreborn/tiles/tier1/TileAutoCraftingTable.java b/src/main/java/techreborn/tiles/tier1/TileAutoCraftingTable.java index 981f59bb6..fc2a7918c 100644 --- a/src/main/java/techreborn/tiles/tier1/TileAutoCraftingTable.java +++ b/src/main/java/techreborn/tiles/tier1/TileAutoCraftingTable.java @@ -304,7 +304,7 @@ public class TileAutoCraftingTable extends TilePowerAcceptor } public ItemStack findMatchingRecipeOutput(InventoryCrafting crafting){ - return findMatchingRecipe(crafting).getRecipeOutput(); + return findMatchingRecipe(crafting).getRecipeOutput().copy(); } // TilePowerAcceptor