From ea4d03ed847f8c715053a36bfdd9fea61a838177 Mon Sep 17 00:00:00 2001 From: GDCloud <93287602+GDCloudstrike@users.noreply.github.com> Date: Sat, 28 Jan 2023 22:21:05 +0100 Subject: Optical Circuit line recipes (#1665) * Optical Board recipes * Spotless * Tweak chromatic glass amount * Expand Forming press input slots * sa * Glowstone nanites recipe * Add new forming press support * Spotless * Tiered expansion of PLE/Forming press slots --------- Co-authored-by: Martin Robertz --- src/main/java/gregtech/common/GT_RecipeAdder.java | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/main/java/gregtech/common') diff --git a/src/main/java/gregtech/common/GT_RecipeAdder.java b/src/main/java/gregtech/common/GT_RecipeAdder.java index b4f80521ce..961aba440f 100644 --- a/src/main/java/gregtech/common/GT_RecipeAdder.java +++ b/src/main/java/gregtech/common/GT_RecipeAdder.java @@ -2790,6 +2790,17 @@ public class GT_RecipeAdder implements IGT_RecipeAdder { return true; } + @Override + public boolean addFormingPressRecipe( + ItemStack[] ItemInputArray, ItemStack[] OutputItemArray, int aDuration, int aEUt) { + if ((ItemInputArray == null) || (OutputItemArray == null)) { + return false; + } + GT_Recipe.GT_Recipe_Map.sPressRecipes.addRecipe( + true, ItemInputArray, OutputItemArray, null, null, null, aDuration, aEUt, 0); + return true; + } + @Override public boolean addFluidHeaterRecipe(ItemStack aItem, FluidStack aOutput, int aDuration, int aEUt) { if ((aItem == null) || (aOutput == null)) { -- cgit