aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2017-07-11 19:36:57 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2017-07-11 19:36:57 +1000
commit5ec0943376a18262c2d72aa48b9d4794d8e8d808 (patch)
tree51346bb7c3332f13ab3f7086098a8001667f9124 /src/Java/gtPlusPlus/xmod/gregtech
parentfd711fff374e30ab1beb2e3b63beea0f85c6ddc9 (diff)
downloadGT5-Unofficial-5ec0943376a18262c2d72aa48b9d4794d8e8d808.tar.gz
GT5-Unofficial-5ec0943376a18262c2d72aa48b9d4794d8e8d808.tar.bz2
GT5-Unofficial-5ec0943376a18262c2d72aa48b9d4794d8e8d808.zip
+ Added all the old circuit recipes back.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java b/src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java
index 5b6ffd8d82..2b50a7832e 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java
@@ -11,6 +11,7 @@ import gregtech.common.covers.*;
import gregtech.common.items.behaviors.Behaviour_DataOrb;
import gregtech.common.items.behaviors.Behaviour_DataStick;
import gtPlusPlus.core.lib.CORE;
+import gtPlusPlus.core.recipe.RECIPES_Old_Circuits;
import gtPlusPlus.core.util.Utils;
import gtPlusPlus.core.util.item.ItemUtils;
import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList;
@@ -270,6 +271,9 @@ public class MetaGeneratedGregtechItems extends Gregtech_MetaItem_X32 {
GregtechItemList.Old_Empty_Board_Basic.set(this.addItem(219, "Empty Circuit Board", "A Board Part", new Object[0]));
GregtechItemList.Old_Empty_Board_Elite.set(this.addItem(220, "Empty Processor Board", "A Processor Board Part", new Object[0]));
+ //Add the old recipes.
+ new RECIPES_Old_Circuits();
+ RECIPES_Old_Circuits.addCircuitRecipes();
Utils.LOG_INFO("[Old Feature] Enabling Pre 5.09.28 circuits & recipes.");
return true;