From feb1963f65a43ee3d8ff17e5601991f51143cd9e Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Thu, 4 Aug 2016 01:48:24 +1000 Subject: + Added a universal battery, accepting both IC2 EU and RF, holding 100mil/400mil of each respectively. (The batteries internal buffer accepts or outputs either) + Added COFH Core api for RF power support. + Added basic work for the Sinter Furnace and some debug rendering classes. --- .../gregtech/GregtechIndustrialSinter.java | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/Java/miscutil/core/handler/registration/gregtech/GregtechIndustrialSinter.java (limited to 'src/Java/miscutil/core/handler') diff --git a/src/Java/miscutil/core/handler/registration/gregtech/GregtechIndustrialSinter.java b/src/Java/miscutil/core/handler/registration/gregtech/GregtechIndustrialSinter.java new file mode 100644 index 0000000000..0c0ffb8cbd --- /dev/null +++ b/src/Java/miscutil/core/handler/registration/gregtech/GregtechIndustrialSinter.java @@ -0,0 +1,24 @@ +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.GregtechMetaTileEntityIndustrialSinter; + +public class GregtechIndustrialSinter{ + + public static void run() + { + if (miscutil.core.lib.LoadedMods.Gregtech){ + Utils.LOG_INFO("Gregtech5u Content | Registering Industrial Sinter Furnace Multiblock."); + run1(); + } + + } + + private static void run1() + { + //Industrial Electrolyzer Multiblock + GregtechItemList.Industrial_SinterFurnace.set(new GregtechMetaTileEntityIndustrialSinter(800, "industrialsinterfurnace.controller.tier.single", "Sinter Furnace").getStackForm(1L)); + + } +} \ No newline at end of file -- cgit