From 12b7dfffcbdc23c0905fe614249ad74f87ef5152 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Wed, 13 Jul 2016 16:49:29 +1000 Subject: + Added the Industrial Electrolyzer --- .../gregtech/GregtechIndustrialElectrolyzer.java | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/Java/miscutil/core/handler/registration/gregtech/GregtechIndustrialElectrolyzer.java (limited to 'src/Java/miscutil/core/handler/registration') diff --git a/src/Java/miscutil/core/handler/registration/gregtech/GregtechIndustrialElectrolyzer.java b/src/Java/miscutil/core/handler/registration/gregtech/GregtechIndustrialElectrolyzer.java new file mode 100644 index 0000000000..ae71e5375e --- /dev/null +++ b/src/Java/miscutil/core/handler/registration/gregtech/GregtechIndustrialElectrolyzer.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.GregtechMetaTileEntityIndustrialElectrolyzer; + +public class GregtechIndustrialElectrolyzer +{ + + + + public static void run() + { + if (miscutil.core.lib.LoadedMods.Gregtech){ + Utils.LOG_INFO("MiscUtils: Gregtech5u Content | Registering Industrial Electrolyzer Multiblock."); + run1(); + } + + } + + private static void run1() + { + //Industrial Electrolyzer Multiblock + GregtechItemList.Industrial_Electrolyzer.set(new GregtechMetaTileEntityIndustrialElectrolyzer(796, "industrialcentrifuge.controller.tier.single", "Industrial Electrolyzer Controller").getStackForm(1L)); + + } +} \ No newline at end of file -- cgit