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/common/blocks | |
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/common/blocks')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks4.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks4.java b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks4.java index c530c6c360..f47e1d5b72 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks4.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks4.java @@ -28,9 +28,9 @@ extends GregtechMetaCasingBlocksAbstract { GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".4.name", "Structural Solar Casing"); GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".5.name", "Salt Containment Casing"); GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".6.name", "Thermal Containment Casing"); - GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".7.name", ""); - GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".8.name", ""); - GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".9.name", ""); + GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".7.name", "Turbine Shaft"); + GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".8.name", "Low Pressure Turbine Casing"); + GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".9.name", "High Pressure Turbine Casing"); GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".10.name", ""); GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".11.name", ""); GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".12.name", ""); @@ -44,10 +44,10 @@ extends GregtechMetaCasingBlocksAbstract { GregtechItemList.Casing_SolarTower_Structural.set(new ItemStack(this, 1, 4)); GregtechItemList.Casing_SolarTower_SaltContainment.set(new ItemStack(this, 1, 5)); GregtechItemList.Casing_SolarTower_HeatContainment.set(new ItemStack(this, 1, 6)); - /*GregtechItemList.Casing_Vanadium_Redox.set(new ItemStack(this, 1, 7)); - GregtechItemList.Casing_Power_SubStation.set(new ItemStack(this, 1, 8)); - GregtechItemList.Casing_Cyclotron_Coil.set(new ItemStack(this, 1, 9)); - GregtechItemList.Casing_Cyclotron_External.set(new ItemStack(this, 1, 10)); + GregtechItemList.Casing_Turbine_Shaft.set(new ItemStack(this, 1, 7)); + GregtechItemList.Casing_Turbine_LP.set(new ItemStack(this, 1, 8)); + GregtechItemList.Casing_Turbine_HP.set(new ItemStack(this, 1, 9)); + /*GregtechItemList.Casing_Cyclotron_External.set(new ItemStack(this, 1, 10)); GregtechItemList.Casing_ThermalContainment.set(new ItemStack(this, 1, 11)); GregtechItemList.Casing_Autocrafter.set(new ItemStack(this, 1, 12)); GregtechItemList.Casing_CuttingFactoryFrame.set(new ItemStack(this, 1, 13)); |