aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/registration
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2018-10-22 13:23:21 +0100
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2018-10-22 13:23:21 +0100
commit9dfe88fb1a39b03bcd418409692938cb4ff557f1 (patch)
tree36ba6668d9a92339bf83a0dccc6ec09a7ab75979 /src/Java/gtPlusPlus/xmod/gregtech/registration
parentf53caf47183769b5c39f65c3715715889db11718 (diff)
downloadGT5-Unofficial-9dfe88fb1a39b03bcd418409692938cb4ff557f1.tar.gz
GT5-Unofficial-9dfe88fb1a39b03bcd418409692938cb4ff557f1.tar.bz2
GT5-Unofficial-9dfe88fb1a39b03bcd418409692938cb4ff557f1.zip
+ Added tiered Control Cores for all Multiblocks, which are now required to run.
+ Added new Bus for Control Cores. $ Added packager recipes for all small/tiny dusts, Closes #395. $ Increased amount of Cryotheum gained from Fluid Extraction to be inline with Pyrotheum. Closes #390.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java
index fe18cb31d6..2fe4fc765f 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java
@@ -10,6 +10,7 @@ import gtPlusPlus.core.recipe.common.CI;
import gtPlusPlus.core.util.minecraft.FluidUtils;
import gtPlusPlus.core.util.minecraft.RecipeUtils;
import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList;
+import gtPlusPlus.xmod.gregtech.api.metatileentity.implementations.GT_MetaTileEntity_Hatch_ControlCore;
import gtPlusPlus.xmod.gregtech.api.metatileentity.implementations.GT_MetaTileEntity_Hatch_Muffler_Adv;
import gtPlusPlus.xmod.gregtech.api.metatileentity.implementations.GT_MetaTileEntity_Hatch_Naquadah;
import gtPlusPlus.xmod.gregtech.api.metatileentity.implementations.base.GT_MetaTileEntity_Hatch_CustomFluidBase;
@@ -128,6 +129,12 @@ public class GregtechCustomHatches {
GT_ModHandler.addCraftingRecipe(GregtechItemList.Hatch_Muffler_Adv_MAX.get(1L, new Object[0]), bitsd,
new Object[] { "M", "P", Character.valueOf('M'), ItemList.Hatch_Muffler_MAX.get(1), Character.valueOf('P'),
GregtechItemList.Pollution_Cleaner_MAX.get(1) });
+
+
+ //GT++ multiblock Control Core Bus
+ GregtechItemList.Hatch_Control_Core
+ .set((new GT_MetaTileEntity_Hatch_ControlCore(30020, "hatch.control.adv", "Control Core Module", 1))
+ .getStackForm(1L));
}
}