From b1c08c2131c5c58e81ba9a6ae10e3738ae7025b4 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Mon, 23 May 2016 08:03:30 +1000 Subject: Forgot to Commit before the weekend.. Not sure what I change, but making this as a rollback point/changelog. --- .../init/machines/GregtechIndustrialCokeOven.java | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/Java/miscutil/gregtech/api/init/machines/GregtechIndustrialCokeOven.java (limited to 'src/Java/miscutil/gregtech/api/init/machines/GregtechIndustrialCokeOven.java') diff --git a/src/Java/miscutil/gregtech/api/init/machines/GregtechIndustrialCokeOven.java b/src/Java/miscutil/gregtech/api/init/machines/GregtechIndustrialCokeOven.java new file mode 100644 index 0000000000..6ddfbf7bc4 --- /dev/null +++ b/src/Java/miscutil/gregtech/api/init/machines/GregtechIndustrialCokeOven.java @@ -0,0 +1,27 @@ +package miscutil.gregtech.api.init.machines; + +import miscutil.core.util.Utils; +import miscutil.gregtech.api.enums.GregtechItemList; +import miscutil.gregtech.common.machines.multi.GregtechMetaTileEntityIndustrialCokeOven; + +public class GregtechIndustrialCokeOven +{ + + + + public static void run() + { + if (miscutil.core.lib.LoadedMods.Gregtech){ + Utils.LOG_INFO("MiscUtils: Gregtech5u Content | Registering Industrial Coke Oven Multiblock."); + run1(); + } + + } + + private static void run1() + { + //Industrial Centrifuge Multiblock + GregtechItemList.Industrial_CokeOven.set(new GregtechMetaTileEntityIndustrialCokeOven(791, "industrialcokeoven.controller.tier.single", "Industrial Coke Oven").getStackForm(1L)); + + } +} \ No newline at end of file -- cgit