aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/core/handler
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-07-14 18:26:52 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-07-14 18:26:52 +1000
commit282fcdbf4e7952d7e2c23e04b50e05be1a600335 (patch)
treed6d814e781c442e5c9d697d8a1fd367cd33e2209 /src/Java/miscutil/core/handler
parentd07298d75d0b59e8a22a6e05b6828a9efdaa5876 (diff)
downloadGT5-Unofficial-282fcdbf4e7952d7e2c23e04b50e05be1a600335.tar.gz
GT5-Unofficial-282fcdbf4e7952d7e2c23e04b50e05be1a600335.tar.bz2
GT5-Unofficial-282fcdbf4e7952d7e2c23e04b50e05be1a600335.zip
+ Added the Maceration Stack Multiblock
> Basic work done, shape isn't forming properly yet.
Diffstat (limited to 'src/Java/miscutil/core/handler')
-rw-r--r--src/Java/miscutil/core/handler/COMPAT_HANDLER.java2
-rw-r--r--src/Java/miscutil/core/handler/registration/gregtech/GregtechIndustrialMacerator.java27
2 files changed, 29 insertions, 0 deletions
diff --git a/src/Java/miscutil/core/handler/COMPAT_HANDLER.java b/src/Java/miscutil/core/handler/COMPAT_HANDLER.java
index 2e72a4a09d..af2e1341eb 100644
--- a/src/Java/miscutil/core/handler/COMPAT_HANDLER.java
+++ b/src/Java/miscutil/core/handler/COMPAT_HANDLER.java
@@ -24,6 +24,7 @@ import miscutil.core.handler.registration.gregtech.GregtechEnergyBuffer;
import miscutil.core.handler.registration.gregtech.GregtechIndustrialCentrifuge;
import miscutil.core.handler.registration.gregtech.GregtechIndustrialCokeOven;
import miscutil.core.handler.registration.gregtech.GregtechIndustrialElectrolyzer;
+import miscutil.core.handler.registration.gregtech.GregtechIndustrialMacerator;
import miscutil.core.handler.registration.gregtech.GregtechIndustrialPlatePress;
import miscutil.core.handler.registration.gregtech.GregtechIronBlastFurnace;
import miscutil.core.handler.registration.gregtech.GregtechRocketFuelGenerator;
@@ -89,6 +90,7 @@ public class COMPAT_HANDLER {
GregtechIndustrialPlatePress.run();
GregtechRocketFuelGenerator.run();
GregtechIndustrialElectrolyzer.run();
+ GregtechIndustrialMacerator.run();
}
}
diff --git a/src/Java/miscutil/core/handler/registration/gregtech/GregtechIndustrialMacerator.java b/src/Java/miscutil/core/handler/registration/gregtech/GregtechIndustrialMacerator.java
new file mode 100644
index 0000000000..9520b140ff
--- /dev/null
+++ b/src/Java/miscutil/core/handler/registration/gregtech/GregtechIndustrialMacerator.java
@@ -0,0 +1,27 @@
+package miscutil.core.handler.registration.gregtech;
+
+import miscutil.core.util.Utils;
+import miscutil.core.xmod.gregtech.api.enums.GregtechItemList;
+import miscutil.core.xmod.gregtech.common.tileentities.machines.multi.GregtechMetaTileEntityIndustrialMacerator;
+
+public class GregtechIndustrialMacerator
+{
+
+
+
+ public static void run()
+ {
+ if (miscutil.core.lib.LoadedMods.Gregtech){
+ Utils.LOG_INFO("MiscUtils: Gregtech5u Content | Registering Industrial Maceration Stack Multiblock.");
+ run1();
+ }
+
+ }
+
+ private static void run1()
+ {
+ //Industrial Electrolyzer Multiblock
+ GregtechItemList.Industrial_MacerationStack.set(new GregtechMetaTileEntityIndustrialMacerator(797, "industrialmacerator.controller.tier.single", "Industrial Maceration Stack Control Block").getStackForm(1L));
+
+ }
+} \ No newline at end of file