From c964170c46c7242097fcd3076ba61a7851191472 Mon Sep 17 00:00:00 2001 From: Jordan Byrne Date: Thu, 7 Dec 2017 16:31:29 +1000 Subject: + Added the component assembler. (Makes Motors, Pistons, etc.) % More Nitro work. --- src/Java/gregtech/api/util/Recipe_GT.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/Java/gregtech/api') diff --git a/src/Java/gregtech/api/util/Recipe_GT.java b/src/Java/gregtech/api/util/Recipe_GT.java index 082dc6e264..1b9c4c841e 100644 --- a/src/Java/gregtech/api/util/Recipe_GT.java +++ b/src/Java/gregtech/api/util/Recipe_GT.java @@ -8,6 +8,8 @@ import gregtech.api.GregTech_API; import gregtech.api.interfaces.tileentity.IGregTechTileEntity; import gregtech.api.interfaces.tileentity.IHasWorldObjectAndCoords; import gregtech.api.objects.GT_ItemStack; +import gregtech.api.util.GT_Recipe.GT_Recipe_Map; +import gregtech.api.util.GT_Recipe.GT_Recipe_Map_Assembler; import gtPlusPlus.core.util.Utils; import gtPlusPlus.core.util.item.ItemUtils; import net.minecraft.item.ItemStack; @@ -277,6 +279,10 @@ public class Recipe_GT extends GT_Recipe{ " EU", true, false); + //Component Assembler + public static final GT_Recipe_Map sComponentAssemblerRecipes = new GT_Recipe_Map_Assembler(new HashSet(300), "gt.recipe.componentassembler", "Component Assembler", null, RES_PATH_GUI + "basicmachines/Assembler", 6, 1, 1, 0, 1, E, 1, E, true, true); + + /** * HashMap of Recipes based on their Items */ -- cgit