diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-08-30 14:15:30 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-08-30 14:15:30 +1000 |
commit | 99c8ea64db96940ca8f37e5b36d8d8b5e6a53f95 (patch) | |
tree | f7ad27e6898c01dc65116c6339446e209072d9b8 /src/Java/miscutil/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java | |
parent | 689bea77fb8d93cecc0a1298772614068ed621d3 (diff) | |
download | GT5-Unofficial-99c8ea64db96940ca8f37e5b36d8d8b5e6a53f95.tar.gz GT5-Unofficial-99c8ea64db96940ca8f37e5b36d8d8b5e6a53f95.tar.bz2 GT5-Unofficial-99c8ea64db96940ca8f37e5b36d8d8b5e6a53f95.zip |
+ Added Casing blocks for the future of Nuclear Power generation.
% Changed how a few log messages are presented.
Diffstat (limited to 'src/Java/miscutil/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java')
-rw-r--r-- | src/Java/miscutil/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Java/miscutil/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java b/src/Java/miscutil/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java index b6a79955a8..6371764894 100644 --- a/src/Java/miscutil/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java +++ b/src/Java/miscutil/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java @@ -36,8 +36,8 @@ extends GregtechMetaCasingBlocksAbstract { GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".9.name", "Matter Fabricator Casing"); GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".10.name", "Iron Plated Bricks"); GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".11.name", "Unused Casing"); - GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".12.name", "Unused Coil Block"); - GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".13.name", "Unused Coil Block"); + GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".12.name", "Reactor Casing Tier I"); + GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".13.name", "Reactor Casing Tier II"); GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".14.name", "Unused Coil Block"); GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".15.name", "Unused Coil Block"); GregtechItemList.Casing_Centrifuge1.set(new ItemStack(this, 1, 0)); @@ -52,8 +52,8 @@ extends GregtechMetaCasingBlocksAbstract { GregtechItemList.Casing_MatterFab.set(new ItemStack(this, 1, 9)); GregtechItemList.Casing_IronPlatedBricks.set(new ItemStack(this, 1, 10)); GregtechItemList.Casing_U7.set(new ItemStack(this, 1, 11)); - GregtechItemList.Casing_Coil_U1.set(new ItemStack(this, 1, 12)); - GregtechItemList.Casing_Coil_U2.set(new ItemStack(this, 1, 13)); + GregtechItemList.Casing_Reactor_I.set(new ItemStack(this, 1, 12)); + GregtechItemList.Casing_Reactor_II.set(new ItemStack(this, 1, 13)); GregtechItemList.Casing_Coil_U3.set(new ItemStack(this, 1, 14)); GregtechItemList.Casing_Coil_U4.set(new ItemStack(this, 1, 15)); } |