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/api/interfaces/internal/IGT_RecipeAdder.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/main/java/gregtech/api/interfaces') diff --git a/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java b/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java index 410688a912..235111c6ef 100644 --- a/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java +++ b/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java @@ -1179,6 +1179,9 @@ public interface IGT_RecipeAdder { boolean addFormingPressRecipe( ItemStack aItemToImprint, ItemStack aForm, ItemStack aImprintedItem, int aDuration, int aEUt); + // Allows more than 2 inputs and multiple outputs + boolean addFormingPressRecipe(ItemStack[] ItemInputArray, ItemStack[] OutputItemArray, int aDuration, int aEUt); + /** * Adds a Recipe for the Sifter. (up to 9 Outputs) */ -- cgit