diff options
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialSifter.java')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialSifter.java | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialSifter.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialSifter.java index 32ca4cd716..664f1c0d78 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialSifter.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialSifter.java @@ -6,26 +6,22 @@ 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 class GregtechIndustrialSifter { - - - public static void run() - { - if (gtPlusPlus.core.lib.LoadedMods.Gregtech){ + 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 + 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)); + 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 |