aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.properties4
-rw-r--r--libs/GT-PlusPlus-1.6.02-release-dev.jar (renamed from libs/GT-PlusPlus-1.5.6-Pre-release.jar)bin2921830 -> 2914991 bytes
-rw-r--r--libs/GTNewHorizonsCoreMod-1.7.10-1.5.8 (1).jar (renamed from libs/GTNewHorizonsCoreMod-1.7.10-1.5.4.jar)bin3275269 -> 3287712 bytes
-rw-r--r--src/main/java/com/github/technus/tectech/loader/RecipeLoader.java17
4 files changed, 18 insertions, 3 deletions
diff --git a/build.properties b/build.properties
index a4d1035806..0635e9681a 100644
--- a/build.properties
+++ b/build.properties
@@ -6,8 +6,8 @@ ic2.version=2.2.790-experimental
codechickenlib.version=1.1.3.140
codechickencore.version=1.0.7.47
nei.version=1.0.5.120
-gregtech.jenkinsbuild=757
-gregtech.version=5.09.31.26
+gregtech.jenkinsbuild=851
+gregtech.version=5.09.32.04
cofhcore.cf=2246/920
cofhcore.version=[1.7.10]3.0.3-303-dev
cofhlib.cf=2246/918
diff --git a/libs/GT-PlusPlus-1.5.6-Pre-release.jar b/libs/GT-PlusPlus-1.6.02-release-dev.jar
index 13ae18b160..82ff78add3 100644
--- a/libs/GT-PlusPlus-1.5.6-Pre-release.jar
+++ b/libs/GT-PlusPlus-1.6.02-release-dev.jar
Binary files differ
diff --git a/libs/GTNewHorizonsCoreMod-1.7.10-1.5.4.jar b/libs/GTNewHorizonsCoreMod-1.7.10-1.5.8 (1).jar
index 934c1cec13..09bcdc7dae 100644
--- a/libs/GTNewHorizonsCoreMod-1.7.10-1.5.4.jar
+++ b/libs/GTNewHorizonsCoreMod-1.7.10-1.5.8 (1).jar
Binary files differ
diff --git a/src/main/java/com/github/technus/tectech/loader/RecipeLoader.java b/src/main/java/com/github/technus/tectech/loader/RecipeLoader.java
index 5c32328889..aab236b7dc 100644
--- a/src/main/java/com/github/technus/tectech/loader/RecipeLoader.java
+++ b/src/main/java/com/github/technus/tectech/loader/RecipeLoader.java
@@ -2,7 +2,17 @@ package com.github.technus.tectech.loader;
import com.github.technus.tectech.compatibility.dreamcraft.DreamCraftRecipeLoader;
import com.github.technus.tectech.elementalMatter.definitions.complex.dAtomDefinition;
+import com.github.technus.tectech.thing.block.QuantumGlassBlock;
+import com.github.technus.tectech.thing.casing.GT_Block_HintTT;
+import com.github.technus.tectech.thing.casing.TT_Container_Casings;
import cpw.mods.fml.common.Loader;
+import gregtech.api.enums.Materials;
+import gregtech.api.enums.OrePrefixes;
+import gregtech.api.util.GT_OreDictUnificator;
+import gregtech.api.util.GT_Utility;
+import net.minecraft.item.ItemStack;
+
+import static gregtech.api.enums.GT_Values.RA;
/**
* Created by danie_000 on 16.11.2016.
@@ -15,7 +25,12 @@ public class RecipeLoader implements Runnable {
// Recipes init - common goes here rest goes into methods below
// ===================================================================================================
-
+ for(int i=0;i<=15;i++)
+ RA.addAssemblerRecipe(new ItemStack[]{
+ GT_Utility.getIntegratedCircuit(i),
+ GT_OreDictUnificator.get(OrePrefixes.dust,Materials.Cobalt,1)},
+ Materials.Aluminium.getMolten(864),
+ new ItemStack(TT_Container_Casings.sHintCasingsTT, 1,i),32,120);
if (Loader.isModLoaded("dreamcraft")) new DreamCraftRecipeLoader().run();//TODO init recipes for GTNH version
else new BloodyRecipeLoader().run();//TODO init recipes for NON-GTNH version