aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/blocks
diff options
context:
space:
mode:
authorJohannes Gäßler <updrn@student.kit.edu>2017-05-09 21:51:49 +0200
committerJohannes Gäßler <updrn@student.kit.edu>2017-05-09 21:51:49 +0200
commit0c2dee56daeb7b94208a581f1dc9f21edbb5e2f6 (patch)
tree58c266c6182b5f1b0ddb19d14b596278e3f6ba4f /src/main/java/gregtech/common/blocks
parentad40b85de13f4e576d78d32fb4fcb6514a80e4ab (diff)
downloadGT5-Unofficial-0c2dee56daeb7b94208a581f1dc9f21edbb5e2f6.tar.gz
GT5-Unofficial-0c2dee56daeb7b94208a581f1dc9f21edbb5e2f6.tar.bz2
GT5-Unofficial-0c2dee56daeb7b94208a581f1dc9f21edbb5e2f6.zip
Added new textures for the LCM, using them now
Diffstat (limited to 'src/main/java/gregtech/common/blocks')
-rw-r--r--src/main/java/gregtech/common/blocks/GT_Block_Casings4.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/gregtech/common/blocks/GT_Block_Casings4.java b/src/main/java/gregtech/common/blocks/GT_Block_Casings4.java
index da775be69d..9de9c3d323 100644
--- a/src/main/java/gregtech/common/blocks/GT_Block_Casings4.java
+++ b/src/main/java/gregtech/common/blocks/GT_Block_Casings4.java
@@ -37,7 +37,7 @@ public class GT_Block_Casings4
GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".11.name", "Titanium Turbine Casing");
GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".12.name", "Tungstensteel Turbine Casing");
GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".13.name", "Engine Intake Casing");
- GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".14.name", "Inert Machine Casing");
+ GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".14.name", "Chemically Inert Machine Casing");
GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".15.name", "PTFE Pipe Casing");
ItemList.Casing_RobustTungstenSteel.set(new ItemStack(this, 1, 0));
@@ -52,7 +52,7 @@ public class GT_Block_Casings4
ItemList.Casing_Turbine2.set(new ItemStack(this, 1, 11));
ItemList.Casing_Turbine3.set(new ItemStack(this, 1, 12));
ItemList.Casing_EngineIntake.set(new ItemStack(this, 1, 13));
- ItemList.Casing_Inert.set(new ItemStack(this, 1, 14));
+ ItemList.Casing_Chemically_Inert.set(new ItemStack(this, 1, 14));
ItemList.Casing_Pipe_Polytetrafluoroethylene.set(new ItemStack(this, 1, 15));
}
@@ -87,7 +87,7 @@ public class GT_Block_Casings4
case 13:
return Textures.BlockIcons.MACHINE_CASING_ENGINE_INTAKE.getIcon();
case 14:
- return Textures.BlockIcons.MACHINE_CASING_INERT.getIcon();
+ return Textures.BlockIcons.MACHINE_CASING_CHEMICALLY_INERT.getIcon();
case 15:
return Textures.BlockIcons.MACHINE_CASING_PIPE_POLYTETRAFLUOROETHYLENE.getIcon();
}