From 99c8ea64db96940ca8f37e5b36d8d8b5e6a53f95 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Tue, 30 Aug 2016 14:15:30 +1000 Subject: + Added Casing blocks for the future of Nuclear Power generation. % Changed how a few log messages are presented. --- .../xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Java/miscutil/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java') 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)); } -- cgit