diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-08-07 00:29:01 +0000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-08-07 00:29:01 +0000 |
commit | d03ded134ba8187b5fee535b2b41ad298acaef54 (patch) | |
tree | 2b87c71c99adefcf1d4d67ef3bb7e697a3179456 /src/Java/gtPlusPlus/xmod/gregtech/common/blocks | |
parent | bd5397dfbd6b2228759f288e2dfc126b0f321be7 (diff) | |
download | GT5-Unofficial-d03ded134ba8187b5fee535b2b41ad298acaef54.tar.gz GT5-Unofficial-d03ded134ba8187b5fee535b2b41ad298acaef54.tar.bz2 GT5-Unofficial-d03ded134ba8187b5fee535b2b41ad298acaef54.zip |
+ Added custom Cyclotron casing & coil blocks.
+ More Cyclotron work.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/blocks')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks2.java | 8 | ||||
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler2.java | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks2.java b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks2.java index e7ab9acc9a..a7d7b922ee 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks2.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks2.java @@ -29,8 +29,8 @@ extends GregtechMetaCasingBlocksAbstract { GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".6.name", "Large Sieve Grate"); //79 GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".7.name", "Placeholder Casing"); //80 GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".8.name", "Incoloy Casing"); //81 - GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".9.name", "Placeholder Casing"); - GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".10.name", "Placeholder Casing"); + GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".9.name", "Cyclotron Coil"); + GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".10.name", "Cyclotron Outer Casing"); GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".11.name", "Placeholder Casing"); GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".12.name", "Placeholder Casing"); GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".13.name", "Placeholder Casing"); @@ -45,8 +45,8 @@ extends GregtechMetaCasingBlocksAbstract { GregtechItemList.Casing_SifterGrate.set(new ItemStack(this, 1, 6)); GregtechItemList.Casing_PlaceHolder7.set(new ItemStack(this, 1, 7)); GregtechItemList.Casing_PlaceHolder8.set(new ItemStack(this, 1, 8)); - GregtechItemList.Casing_PlaceHolder9.set(new ItemStack(this, 1, 9)); - GregtechItemList.Casing_PlaceHolder10.set(new ItemStack(this, 1, 10)); + GregtechItemList.Casing_Cyclotron_Coil.set(new ItemStack(this, 1, 9)); + GregtechItemList.Casing_Cyclotron_External.set(new ItemStack(this, 1, 10)); GregtechItemList.Casing_PlaceHolder11.set(new ItemStack(this, 1, 11)); GregtechItemList.Casing_PlaceHolder12.set(new ItemStack(this, 1, 12)); GregtechItemList.Casing_PlaceHolder13.set(new ItemStack(this, 1, 13)); diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler2.java b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler2.java index 1eda274bd7..97b81b65d9 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler2.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler2.java @@ -36,12 +36,12 @@ public class CasingTextureHandler2 { //Broken Pink Fusion Casings case 8: return TexturesGtBlock._PlaceHolder.getIcon(); - //Matter Fabricator Casings + //Cyclotron Coil case 9: - return TexturesGtBlock._PlaceHolder.getIcon(); - //Iron Blast Fuance Textures + return TexturesGtBlock.Casing_Machine_Metal_Panel_B.getIcon(); + //Cyclotron External Casing case 10: - return TexturesGtBlock._PlaceHolder.getIcon(); + return TexturesGtBlock.Casing_Material_HastelloyX.getIcon(); //Multitank Exterior Casing case 11: return TexturesGtBlock._PlaceHolder.getIcon(); |