aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gregtech/api/util/Recipe_GT.java
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2017-12-07 16:31:29 +1000
committerJordan Byrne <draknyte1@hotmail.com>2017-12-07 16:31:29 +1000
commitc964170c46c7242097fcd3076ba61a7851191472 (patch)
tree81eb22545824445311f35eccc02b5f0a65f40e6c /src/Java/gregtech/api/util/Recipe_GT.java
parentdd5b8fefd5901d89982bb98455460900ccab6a7c (diff)
downloadGT5-Unofficial-c964170c46c7242097fcd3076ba61a7851191472.tar.gz
GT5-Unofficial-c964170c46c7242097fcd3076ba61a7851191472.tar.bz2
GT5-Unofficial-c964170c46c7242097fcd3076ba61a7851191472.zip
+ Added the component assembler. (Makes Motors, Pistons, etc.)
% More Nitro work.
Diffstat (limited to 'src/Java/gregtech/api/util/Recipe_GT.java')
-rw-r--r--src/Java/gregtech/api/util/Recipe_GT.java6
1 files changed, 6 insertions, 0 deletions
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<GT_Recipe>(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
*/