diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-09-18 13:42:40 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-09-18 13:42:40 +1000 |
commit | a5d2b84eabdd5b75d409d8519b7831ecfd0061b9 (patch) | |
tree | 3dad40f2e8d4a6de67a8a199ea08467832f506eb /src/Java/gtPlusPlus/xmod/gregtech/registration | |
parent | 66e97d8a0c9ceb8a3a6b41856ee773a653b02f8c (diff) | |
download | GT5-Unofficial-a5d2b84eabdd5b75d409d8519b7831ecfd0061b9.tar.gz GT5-Unofficial-a5d2b84eabdd5b75d409d8519b7831ecfd0061b9.tar.bz2 GT5-Unofficial-a5d2b84eabdd5b75d409d8519b7831ecfd0061b9.zip |
% Finished up work on large Turbines.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechLargeTurbinesAndHeatExchanger.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechLargeTurbinesAndHeatExchanger.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechLargeTurbinesAndHeatExchanger.java new file mode 100644 index 0000000000..6f2e5c2e11 --- /dev/null +++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechLargeTurbinesAndHeatExchanger.java @@ -0,0 +1,23 @@ +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.production.turbines.GT_MTE_LargeTurbine_SHSteam; +import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.production.turbines.GT_MTE_LargeTurbine_Steam; + +public class GregtechLargeTurbinesAndHeatExchanger { + + public static void run() { + if (gtPlusPlus.core.lib.LoadedMods.Gregtech) { + Logger.INFO("Gregtech5u Content | Registering Larger Turbines & Extra Large Heat Exchanger."); + run1(); + } + + } + + private static void run1() { + GregtechItemList.Large_Steam_Turbine.set(new GT_MTE_LargeTurbine_Steam(865, "multimachine.largerturbine", "XL Turbo Steam Turbine").getStackForm(1L)); + GregtechItemList.Large_HPSteam_Turbine.set(new GT_MTE_LargeTurbine_SHSteam(866, "multimachine.largerhpturbine", "XL Turbo HP Steam Turbine").getStackForm(1L)); + + } +}
\ No newline at end of file |