diff options
author | draknyte1 <draknyte1@hotmail.com> | 2017-03-28 18:02:17 +1000 |
---|---|---|
committer | draknyte1 <draknyte1@hotmail.com> | 2017-03-28 18:02:17 +1000 |
commit | 2b22fa0748c0bdac2b90d0391b125c4cc21514e5 (patch) | |
tree | 4e3a05cf3bbc05c9a55832f5c4501bb5ae8945ff /src/Java/gtPlusPlus/xmod/gregtech/registration | |
parent | 03eeaa665109cb6bcdcf115d8c167727556fda6b (diff) | |
download | GT5-Unofficial-2b22fa0748c0bdac2b90d0391b125c4cc21514e5.tar.gz GT5-Unofficial-2b22fa0748c0bdac2b90d0391b125c4cc21514e5.tar.bz2 GT5-Unofficial-2b22fa0748c0bdac2b90d0391b125c4cc21514e5.zip |
+ Added the Multiblock Sifter.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialSifter.java | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialSifter.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialSifter.java new file mode 100644 index 0000000000..32ca4cd716 --- /dev/null +++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialSifter.java @@ -0,0 +1,31 @@ +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_IndustrialMacerator; +import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.GregtechMetaTileEntity_IndustrialSifter; + +public class GregtechIndustrialSifter +{ + + + + public static void run() + { + if (gtPlusPlus.core.lib.LoadedMods.Gregtech){ + Utils.LOG_INFO("Gregtech5u Content | Registering Industrial Sifter Multiblock."); + if (CORE.configSwitches.enableMultiblock_IndustrialSifter) { //TODO + run1(); + } + } + + } + + private static void run1() + { + //Industrial Maceration Stack Multiblock + GregtechItemList.Industrial_Sifter.set(new GregtechMetaTileEntity_IndustrialSifter(840, "industrialsifter.controller.tier.single", "Large Sifter Control Block").getStackForm(1L)); + + } +}
\ No newline at end of file |