aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/blocks
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2018-09-01 16:07:55 +1000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2018-09-01 16:07:55 +1000
commit7221c2ed12dabfc6443fa6303915feae51a0d020 (patch)
tree9f5146d6e6cbabb86c95fb029934cded0f7dfc8d /src/Java/gtPlusPlus/xmod/gregtech/common/blocks
parent9e5747fb55574e0a7dfa0251e8974d31cf500144 (diff)
downloadGT5-Unofficial-7221c2ed12dabfc6443fa6303915feae51a0d020.tar.gz
GT5-Unofficial-7221c2ed12dabfc6443fa6303915feae51a0d020.tar.bz2
GT5-Unofficial-7221c2ed12dabfc6443fa6303915feae51a0d020.zip
% More work to the Naquadah Reactor Mark XII.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/blocks')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks3.java9
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler3.java2
2 files changed, 7 insertions, 4 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks3.java b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks3.java
index 6d6284f9b4..4c534eb7bb 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks3.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks3.java
@@ -55,7 +55,7 @@ extends GregtechMetaCasingBlocksAbstract {
GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".0.name", "Aquatic Casing");
GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".1.name", "Inconel Reinforced Casing");
GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".2.name", "Multi-Use Casing");
- GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".3.name", "Trinium Plated Mining Platform Casing");
+ GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".3.name", "Trinium Plated Casing");
GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".4.name", "Vanadium Redox Power Cell (IV)");
GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".5.name", "Vanadium Redox Power Cell (LuV)");
GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".6.name", "Vanadium Redox Power Cell (ZPM)");
@@ -66,7 +66,7 @@ extends GregtechMetaCasingBlocksAbstract {
GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".11.name", "Volcanus Casing");
GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".12.name", "Fusion Machine Casing MK III");
GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".13.name", "Advanced Fusion Coil");
- GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".15.name", "Placeholder");
+ GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".15.name", "Containment Casing");
GregtechItemList.Casing_FishPond.set(new ItemStack(this, 1, 0));
GregtechItemList.Casing_Extruder.set(new ItemStack(this, 1, 1));
GregtechItemList.Casing_Multi_Use.set(new ItemStack(this, 1, 2));
@@ -81,7 +81,7 @@ extends GregtechMetaCasingBlocksAbstract {
GregtechItemList.Casing_Adv_BlastFurnace.set(new ItemStack(this, 1, 11));
GregtechItemList.Casing_Fusion_External.set(new ItemStack(this, 1, 12));
GregtechItemList.Casing_Fusion_Internal.set(new ItemStack(this, 1, 13));
- //GregtechItemList.Casing_PLACEHOLDER_TreeFarmer.set(new ItemStack(this, 1, 15)); //Tree Farmer Textures
+ GregtechItemList.Casing_Containment.set(new ItemStack(this, 1, 15));
}
@Override
@@ -380,6 +380,9 @@ extends GregtechMetaCasingBlocksAbstract {
case 14 : {
return TexturesGtBlock.TEXTURE_CASING_FUSION_CASING_ULTRA.getIcon();
}
+ case 15 : {
+ return TexturesGtBlock.TEXTURE_MAGIC_PANEL_A.getIcon();
+ }
default : {
return Textures.BlockIcons.MACHINE_CASING_SOLID_STEEL.getIcon();
}
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler3.java b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler3.java
index b387956a83..2bd96bcec5 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler3.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler3.java
@@ -51,7 +51,7 @@ public class CasingTextureHandler3 {
case 14:
return TexturesGtBlock.TEXTURE_CASING_FUSION_CASING_ULTRA.getIcon();
case 15:
- return TexturesGtBlock._PlaceHolder.getIcon();
+ return TexturesGtBlock.TEXTURE_MAGIC_PANEL_A.getIcon();
default:
return TexturesGtBlock._PlaceHolder.getIcon();