aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/recipe/common
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-09-24 15:58:13 +1000
committerAlkalus <draknyte1@hotmail.com>2017-09-24 15:58:13 +1000
commit1074bc0bd6c32de743cb63a40627bcff7e27fc33 (patch)
treec2562c1e0e7cef374febab3cdab57def39156e03 /src/Java/gtPlusPlus/core/recipe/common
parent2f323cdeb25030718d6991f132c0b7cfed36e6fd (diff)
downloadGT5-Unofficial-1074bc0bd6c32de743cb63a40627bcff7e27fc33.tar.gz
GT5-Unofficial-1074bc0bd6c32de743cb63a40627bcff7e27fc33.tar.bz2
GT5-Unofficial-1074bc0bd6c32de743cb63a40627bcff7e27fc33.zip
+ Added recipes for Semi-Fluid Generators.
$ Semi-Fluid Generator fixes.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe/common')
-rw-r--r--src/Java/gtPlusPlus/core/recipe/common/CI.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/common/CI.java b/src/Java/gtPlusPlus/core/recipe/common/CI.java
index 59df867766..996682464b 100644
--- a/src/Java/gtPlusPlus/core/recipe/common/CI.java
+++ b/src/Java/gtPlusPlus/core/recipe/common/CI.java
@@ -1,6 +1,7 @@
package gtPlusPlus.core.recipe.common;
import gregtech.api.enums.*;
+import gregtech.api.util.GT_ModHandler;
import gtPlusPlus.core.item.ModItems;
import gtPlusPlus.core.lib.CORE;
import gtPlusPlus.core.material.ALLOY;
@@ -15,6 +16,12 @@ public class CI {
//null
public static ItemStack _NULL = ItemUtils.getSimpleStack(ModItems.AAA_Broken);
+
+ //bits
+ public static long bits = GT_ModHandler.RecipeBits.NOT_REMOVABLE | GT_ModHandler.RecipeBits.REVERSIBLE
+ | GT_ModHandler.RecipeBits.BUFFERED;
+ public static long bitsd = GT_ModHandler.RecipeBits.DISMANTLEABLE | GT_ModHandler.RecipeBits.NOT_REMOVABLE
+ | GT_ModHandler.RecipeBits.REVERSIBLE | GT_ModHandler.RecipeBits.BUFFERED;
//Circuits
public static Object circuitPrimitive;