aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/registration
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-11-17 10:58:02 +1000
committerAlkalus <draknyte1@hotmail.com>2017-11-17 10:58:02 +1000
commit94389c154e4d517e4fcdebdacc3da9be414e8c75 (patch)
tree5c00c6c8689caf1dc4e0cba3f4363296279bb5b4 /src/Java/gtPlusPlus/xmod/gregtech/registration
parentd7897d548e0d377df56a33b4be4a60717d97dd97 (diff)
downloadGT5-Unofficial-94389c154e4d517e4fcdebdacc3da9be414e8c75.tar.gz
GT5-Unofficial-94389c154e4d517e4fcdebdacc3da9be414e8c75.tar.bz2
GT5-Unofficial-94389c154e4d517e4fcdebdacc3da9be414e8c75.zip
+ Added the Cutting Factory Multiblock.
+ Added a config for the Cutting Factory. % Hid Generator Array Logging.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialCuttingFactory.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialCuttingFactory.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialCuttingFactory.java
new file mode 100644
index 0000000000..11d8b400d0
--- /dev/null
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialCuttingFactory.java
@@ -0,0 +1,25 @@
+package gtPlusPlus.xmod.gregtech.registration.gregtech;
+
+import gtPlusPlus.core.lib.CORE;
+import gtPlusPlus.core.util.Utils;
+import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList;
+import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.GregtechMetaTileEntity_IndustrialCuttingMachine;
+
+public class GregtechIndustrialCuttingFactory {
+
+ public static void run() {
+ if (gtPlusPlus.core.lib.LoadedMods.Gregtech) {
+ Utils.LOG_INFO("Gregtech5u Content | Registering Industrial Cutting Factory Multiblock.");
+ if (CORE.configSwitches.enableMultiblock_IndustrialCuttingMachine) {
+ run1();
+ }
+ }
+ }
+
+ private static void run1() {
+ // Industrial Wire Factory Multiblock
+ GregtechItemList.Industrial_CuttingFactoryController.set(new GregtechMetaTileEntity_IndustrialCuttingMachine(992,
+ "industrialcuttingmachine.controller.tier.01", "Cutting Factory Controller").getStackForm(1L));
+
+ }
+} \ No newline at end of file