From f8ff9e6c00b01dcfef8d46ec13a6ae5449b15269 Mon Sep 17 00:00:00 2001 From: PyralIron Date: Thu, 28 Apr 2022 14:16:20 -0700 Subject: [PATCH] Add Metal Trapdoor Recipes to Metal Press For automation of ingot pattern molds --- src/main/java/tnfcmod/recipes/IERecipes.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/tnfcmod/recipes/IERecipes.java b/src/main/java/tnfcmod/recipes/IERecipes.java index bb4428ed..d4137b42 100644 --- a/src/main/java/tnfcmod/recipes/IERecipes.java +++ b/src/main/java/tnfcmod/recipes/IERecipes.java @@ -240,13 +240,13 @@ public static void registerMetalPressRecipes() MetalPressRecipe.addRecipe(outputSheet, ingredientDoubleIngot, new ItemStack(TNFCItems.mold_sheet), 2400); MetalPressRecipe.addRecipe(outputDoubleSheet, ingredientSheet, new ItemStack(TNFCItems.mold_sheet), 2400).setInputSize(2); } - + MetalPressRecipe.addRecipe(new ItemStack(ItemMetal.get(metal, Metal.ItemType.TRAPDOOR), 1), ingredientSheet, new ItemStack(ItemMetal.get(Metal.STEEL, Metal.ItemType.TRAPDOOR), 1), 2400); if (metal.isToolMetal()) { Ingredient ingredientKnives = Ingredient.fromStacks(new ItemStack(ItemMetal.get(metal, Metal.ItemType.KNIFE_BLADE))); //Sheets and doubles - + //Tools MetalPressRecipe.addRecipe(new ItemStack(ItemMetal.get(metal, Metal.ItemType.AXE_HEAD), 1), ingredientIngot, new ItemStack(TNFCItems.mold_axe), 2400);