diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-27 20:32:34 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-27 20:32:34 +1000 |
commit | d8917c9359495b52aa744c747b4689ca8b94ea79 (patch) | |
tree | 60283c393466f4f7659f50acf6eaebf833007fb8 /src/Java/gtPlusPlus/xmod/gregtech/registration | |
parent | 2e4001d320d022a2640267330769d713f79f3c61 (diff) | |
download | GT5-Unofficial-d8917c9359495b52aa744c747b4689ca8b94ea79.tar.gz GT5-Unofficial-d8917c9359495b52aa744c747b4689ca8b94ea79.tar.bz2 GT5-Unofficial-d8917c9359495b52aa744c747b4689ca8b94ea79.zip |
+ Added the Fission Fuel Processing Plant.
+ Added a config option for the FFPP.
+ Added new textures for the new casings.
- Removed obsolete tooltips on casing blocks.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialFuelRefinery.java | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialFuelRefinery.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialFuelRefinery.java new file mode 100644 index 0000000000..4fed90007d --- /dev/null +++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialFuelRefinery.java @@ -0,0 +1,28 @@ +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_Refinery; + +public class GregtechIndustrialFuelRefinery +{ + + + + public static void run() + { + if (gtPlusPlus.core.lib.LoadedMods.Gregtech){ + Utils.LOG_INFO("Gregtech5u Content | Registering Industrial Fuel Processing and Refinery Multiblock."); + if (CORE.configSwitches.enableMultiblock_NuclearFuelRefinery) run1(); + } + + } + + private static void run1() + { + //Industrial Maceration Stack Multiblock + GregtechItemList.Industrial_FuelRefinery.set(new GregtechMetaTileEntity_Refinery(835, "industrialrefinery.controller.tier.single", "Fission Fuel Processing Plant").getStackForm(1L)); + + } +}
\ No newline at end of file |