diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2020-01-17 12:36:00 +0000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2020-01-17 12:36:00 +0000 |
commit | 3f35b4b0183ea16d623cdcf74447a11f4734ce45 (patch) | |
tree | 695afdc9abf2a481ae261e5bafea45e90482dcb3 /src/Java/gtPlusPlus/xmod/gregtech/registration | |
parent | 72696a0dd5ca5c0cb2a1017cc1e0bb36669d0ce7 (diff) | |
download | GT5-Unofficial-3f35b4b0183ea16d623cdcf74447a11f4734ce45.tar.gz GT5-Unofficial-3f35b4b0183ea16d623cdcf74447a11f4734ce45.tar.bz2 GT5-Unofficial-3f35b4b0183ea16d623cdcf74447a11f4734ce45.zip |
+ Added Zyngen.
% Adjusted Volcanus casing requirement from 10 to 9.
% Adjusted logging in RF convertor.
% Adjusted tooltip on Washplant to include information on water hatch.
$ Fixed coil handling being offset by a tier.
$ Fixed 9-1 breaking if an Input Bus didn't have a circuit.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialAlloySmelter.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialAlloySmelter.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialAlloySmelter.java new file mode 100644 index 0000000000..6587e3a253 --- /dev/null +++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialAlloySmelter.java @@ -0,0 +1,22 @@ +package gtPlusPlus.xmod.gregtech.registration.gregtech; + +import gtPlusPlus.api.objects.Logger; +import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList; +import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.processing.GregtechMetaTileEntity_IndustrialAlloySmelter; + +public class GregtechIndustrialAlloySmelter { + + public static void run() { + if (gtPlusPlus.core.lib.LoadedMods.Gregtech) { + Logger.INFO("Gregtech5u Content | Registering Industrial Alloy Smelter Multiblock."); + run1(); + } + + } + + private static void run1() { + GregtechItemList.Industrial_AlloySmelter.set(new GregtechMetaTileEntity_IndustrialAlloySmelter(31023, + "industrialalloysmelter.controller.tier.single", "Zyngen").getStackForm(1L)); + + } +}
\ No newline at end of file |