aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-09-11 16:34:30 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-09-11 16:34:30 +1000
commita6e89027a76f1a1d510803733dcceb33bd3dfcb7 (patch)
tree8fb0cc4232eb03e6bf51f2a5dc25beb15836ab30 /src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java
parent55678a146fd8faa84eda81a6220a7bb81952d745 (diff)
downloadGT5-Unofficial-a6e89027a76f1a1d510803733dcceb33bd3dfcb7.tar.gz
GT5-Unofficial-a6e89027a76f1a1d510803733dcceb33bd3dfcb7.tar.bz2
GT5-Unofficial-a6e89027a76f1a1d510803733dcceb33bd3dfcb7.zip
+ Re-added the Multitank without a recipe for testing in creative.
+ Gave the multitank it's own casings and textures. $ Fixed a case where I used Materials.VALUES instead of Materials.values() to improve GT 5.9 compat.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java
index 00c9c65e80..601d403f2d 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks.java
@@ -35,7 +35,7 @@ extends GregtechMetaCasingBlocksAbstract {
GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".8.name", "Matter Generation Coil"); //65
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() + ".11.name", "Multitank Exterior Casing");
GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".12.name", "Hastelloy-N Reactor Casing");
GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".13.name", "Zeron-100 Reactor Shielding");
GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".14.name", "Unused Coil Block");
@@ -51,7 +51,7 @@ extends GregtechMetaCasingBlocksAbstract {
GregtechItemList.Casing_MatterGen.set(new ItemStack(this, 1, 8));
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_MultitankExterior.set(new ItemStack(this, 1, 11));
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));