aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/gregtech/api/metatileentity
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-04-23 23:38:12 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-04-23 23:38:12 +1000
commit9eaed3ca7b79903cc77af29b4754ece58f2eace4 (patch)
tree569393dddd5247c4e11238667bfc0a6e58424e45 /src/Java/miscutil/gregtech/api/metatileentity
parent60710b8812b82ca7d15a3781307410be7ff4392d (diff)
downloadGT5-Unofficial-9eaed3ca7b79903cc77af29b4754ece58f2eace4.tar.gz
GT5-Unofficial-9eaed3ca7b79903cc77af29b4754ece58f2eace4.tar.bz2
GT5-Unofficial-9eaed3ca7b79903cc77af29b4754ece58f2eace4.zip
Industrial Centrifuge is now available, fluids work!
Still have to refine the recipe code to work for items better. (It's directly copied from the processing array)
Diffstat (limited to 'src/Java/miscutil/gregtech/api/metatileentity')
-rw-r--r--src/Java/miscutil/gregtech/api/metatileentity/implementations/GregtechMetaCasingBlocks.java14
1 files changed, 4 insertions, 10 deletions
diff --git a/src/Java/miscutil/gregtech/api/metatileentity/implementations/GregtechMetaCasingBlocks.java b/src/Java/miscutil/gregtech/api/metatileentity/implementations/GregtechMetaCasingBlocks.java
index c02404fff7..729747acdc 100644
--- a/src/Java/miscutil/gregtech/api/metatileentity/implementations/GregtechMetaCasingBlocks.java
+++ b/src/Java/miscutil/gregtech/api/metatileentity/implementations/GregtechMetaCasingBlocks.java
@@ -19,8 +19,8 @@ extends GT_Block_Casings_Abstract {
for (byte i = 0; i < 16; i = (byte) (i + 1)) {
GregtechTextures.BlockIcons.GT_CASING_BLOCKS[i] = new GT_CopiedBlockTexture(this, 6, i);
}
- GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".0.name", "Centrifuge Anti-Vibration Casing");
- GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".1.name", "Centrifuge Casing");
+ GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".0.name", "Centrifuge Casing");
+ GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".1.name", "Centrifuge Casing II");
//GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".2.name", "MV Machine Casing");
//GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".3.name", "HV Machine Casing");
//GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".4.name", "EV Machine Casing");
@@ -56,9 +56,9 @@ extends GT_Block_Casings_Abstract {
public IIcon getIcon(int aSide, int aMeta) {
if ((aMeta >= 0) && (aMeta < 16)) {
switch (aMeta) {
+ case 0:
+ return Textures.BlockIcons.MACHINE_CASING_TURBINE.getIcon();
case 1:
- return Textures.BlockIcons.MACHINE_CASING_STABLE_TITANIUM.getIcon();
- case 2:
return Textures.BlockIcons.MACHINE_CASING_ROBUST_TUNGSTENSTEEL.getIcon();
case 10:
return Textures.BlockIcons.MACHINE_CASING_SOLID_STEEL.getIcon();
@@ -71,12 +71,6 @@ extends GT_Block_Casings_Abstract {
case 15:
return Textures.BlockIcons.MACHINE_COIL_SUPERCONDUCTOR.getIcon();
}
- if (aSide == 0) {
- return Textures.BlockIcons.MACHINECASINGS_BOTTOM[aMeta].getIcon();
- }
- if (aSide == 1) {
- return Textures.BlockIcons.MACHINECASINGS_TOP[aMeta].getIcon();
- }
return Textures.BlockIcons.MACHINECASINGS_SIDE[aMeta].getIcon();
}
return Textures.BlockIcons.MACHINE_CASING_SOLID_STEEL.getIcon();