diff options
author | BlueHero233 <87818077+BlueHero233@users.noreply.github.com> | 2024-11-08 21:00:41 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-09 00:00:41 +0000 |
commit | 409f50d563831e7fb53ff5bf6deca805a91154c1 (patch) | |
tree | 57e38ec99e9dfcad3f0ea225112e049a0682035c /src/main/java/gtPlusPlus | |
parent | 88f2451651aa35096ef2127b4e35ec7b19dd9053 (diff) | |
download | GT5-Unofficial-409f50d563831e7fb53ff5bf6deca805a91154c1.tar.gz GT5-Unofficial-409f50d563831e7fb53ff5bf6deca805a91154c1.tar.bz2 GT5-Unofficial-409f50d563831e7fb53ff5bf6deca805a91154c1.zip |
Turbine Texture Refactor (#3435)
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gtPlusPlus')
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaSpecialMultiCasings.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaSpecialMultiCasings.java index d383809972..38d9146e65 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaSpecialMultiCasings.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaSpecialMultiCasings.java @@ -92,7 +92,7 @@ public class GregtechMetaSpecialMultiCasings extends GregtechMetaCasingBlocksAbs public static IIcon getStaticIcon(final int ordinalSide, final byte aMeta) { return switch (aMeta) { case 0 -> TexturesGtBlock.Casing_Redox_1.getIcon(); - case 1 -> Textures.BlockIcons.MACHINE_CASING_TURBINE.getIcon(); + case 1 -> Textures.BlockIcons.MACHINE_CASING_TURBINE_STEEL.getIcon(); case 2 -> Textures.BlockIcons.MACHINE_CASING_TURBINE_TITANIUM.getIcon(); case 3 -> Textures.BlockIcons.MACHINE_CASING_TURBINE_STAINLESSSTEEL.getIcon(); case 4 -> Textures.BlockIcons.MACHINE_CASING_TURBINE_TUNGSTENSTEEL.getIcon(); diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/MTELargeTurbineSteam.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/MTELargeTurbineSteam.java index beeaa2726b..6445e2ad23 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/MTELargeTurbineSteam.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/MTELargeTurbineSteam.java @@ -40,7 +40,7 @@ public class MTELargeTurbineSteam extends MTELargerTurbineBase { @Override public int getCasingTextureIndex() { - return 16; + return 57; } @Override |