diff options
author | GlodBlock <1356392126@qq.com> | 2022-01-22 11:44:22 +0800 |
---|---|---|
committer | GlodBlock <1356392126@qq.com> | 2022-01-22 11:44:22 +0800 |
commit | 1489795e9404fa59b68a84e5da90c242a69aeced (patch) | |
tree | cd0d7664559b9ba3760142e9204e0d6c143e113f /src/main/java/goodgenerator/loader | |
parent | 462e7ec5427c748047349d80654356f35a4a160e (diff) | |
download | GT5-Unofficial-1489795e9404fa59b68a84e5da90c242a69aeced.tar.gz GT5-Unofficial-1489795e9404fa59b68a84e5da90c242a69aeced.tar.bz2 GT5-Unofficial-1489795e9404fa59b68a84e5da90c242a69aeced.zip |
gui and structure stuff of XHE
Diffstat (limited to 'src/main/java/goodgenerator/loader')
-rw-r--r-- | src/main/java/goodgenerator/loader/Loaders.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/goodgenerator/loader/Loaders.java b/src/main/java/goodgenerator/loader/Loaders.java index 6b0b3477bc..86e706d891 100644 --- a/src/main/java/goodgenerator/loader/Loaders.java +++ b/src/main/java/goodgenerator/loader/Loaders.java @@ -94,6 +94,7 @@ public class Loaders { public static ItemStack YFT; public static ItemStack YFH; public static ItemStack SCTurbine; + public static ItemStack XHE; public static ItemStack[] NeutronAccelerators = new ItemStack[9]; public static ItemStack[] Generator_Diesel = new ItemStack[2]; @@ -112,6 +113,7 @@ public class Loaders { Loaders.YFT = new YottaFluidTank(IDOffset + 13, "YottaFluidTank", "YOTTank").getStackForm(1L); Loaders.YFH = new YOTTAHatch(IDOffset + 14, "YottaFluidTankHatch", "YOTHatch", 5).getStackForm(1L); Loaders.SCTurbine = new SupercriticalFluidTurbine(IDOffset + 15, "SupercriticalFluidTurbine", "SC Fluid Turbine").getStackForm(1L); + Loaders.XHE = new ExtremeHeatExchanger(IDOffset + 16, "ExtremeHeatExchanger", "Extreme Heat Exchanger").getStackForm(1L); Loaders.Generator_Diesel[0] = new DieselGenerator(1113, "basicgenerator.diesel.tier.04", "Turbo Supercharging Combustion Generator", 4).getStackForm(1L); Loaders.Generator_Diesel[1] = new DieselGenerator(1114, "basicgenerator.diesel.tier.05", "Ultimate Chemical Energy Releaser", 5).getStackForm(1L); } @@ -174,6 +176,7 @@ public class Loaders { GameRegistry.registerBlock(magicCasing, MyItemBlocks.class, "magicCasing"); GameRegistry.registerBlock(essentiaCell, MyItemBlocks.class, "essentiaCell"); GameRegistry.registerBlock(essentiaHatch, MyItemBlocks.class, "essentiaHatch"); + Textures.BlockIcons.casingTexturePages[GoodGeneratorTexturePage][0] = TextureFactory.of(magicCasing); } } @@ -184,7 +187,6 @@ public class Loaders { public static void addTexturePage() { if (Textures.BlockIcons.casingTexturePages[GoodGeneratorTexturePage] == null){ Textures.BlockIcons.casingTexturePages[GoodGeneratorTexturePage] = new ITexture[128]; - Textures.BlockIcons.casingTexturePages[GoodGeneratorTexturePage][0] = TextureFactory.of(magicCasing); Textures.BlockIcons.casingTexturePages[GoodGeneratorTexturePage][1] = TextureFactory.of(yottaFluidTankCasing); Textures.BlockIcons.casingTexturePages[GoodGeneratorTexturePage][2] = TextureFactory.of(supercriticalFluidTurbineCasing); } |