aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/blocks
diff options
context:
space:
mode:
authorMary <33456283+FourIsTheNumber@users.noreply.github.com>2024-09-22 15:14:45 -0400
committerGitHub <noreply@github.com>2024-09-22 19:14:45 +0000
commit22a702d8b7ef2a5f5ae1a38c4056ed6ab2643b14 (patch)
treebee3b8f3e8778095e0243cf3025da9ab0a827b3a /src/main/java/gregtech/common/blocks
parente14fd93609659e983caa3353c1de4c8e2f034f01 (diff)
downloadGT5-Unofficial-22a702d8b7ef2a5f5ae1a38c4056ed6ab2643b14.tar.gz
GT5-Unofficial-22a702d8b7ef2a5f5ae1a38c4056ed6ab2643b14.tar.bz2
GT5-Unofficial-22a702d8b7ef2a5f5ae1a38c4056ed6ab2643b14.zip
Add Brewery Multi (#3257)
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gregtech/common/blocks')
-rw-r--r--src/main/java/gregtech/common/blocks/BlockCasings10.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/blocks/BlockCasings10.java b/src/main/java/gregtech/common/blocks/BlockCasings10.java
index e5c2e96f32..ada1c58927 100644
--- a/src/main/java/gregtech/common/blocks/BlockCasings10.java
+++ b/src/main/java/gregtech/common/blocks/BlockCasings10.java
@@ -32,9 +32,9 @@ public class BlockCasings10 extends BlockCasingsAbstract {
.addStringLocalization(getUnlocalizedName() + ".11.name", "Extreme Density Space-Bending Casing");
GTLanguageManager
.addStringLocalization(getUnlocalizedName() + ".12.name", "Background Radiation Absorbent Casing");
-
GTLanguageManager.addStringLocalization(getUnlocalizedName() + ".13.name", "Solidifier Casing");
GTLanguageManager.addStringLocalization(getUnlocalizedName() + ".14.name", "Solidifier Radiator");
+ GTLanguageManager.addStringLocalization(getUnlocalizedName() + ".15.name", "Reinforced Wooden Casing");
ItemList.Casing_Electromagnetic_Separator.set(new ItemStack(this, 1, 0));
ItemList.Casing_Laser.set(new ItemStack(this, 1, 1));
@@ -51,6 +51,7 @@ public class BlockCasings10 extends BlockCasingsAbstract {
ItemList.Background_Radiation_Casing.set(new ItemStack(this, 1, 12));
ItemList.Casing_Fluid_Solidifier.set(new ItemStack(this, 1, 13));
ItemList.Radiator_Fluid_Solidifier.set(new ItemStack(this, 1, 14));
+ ItemList.Casing_Reinforced_Wood.set(new ItemStack(this, 1, 15));
}
@Override
@@ -77,6 +78,8 @@ public class BlockCasings10 extends BlockCasingsAbstract {
case 12 -> Textures.BlockIcons.RADIATION_ABSORBENT_CASING.getIcon();
case 13 -> Textures.BlockIcons.MACHINE_CASING_MS160.getIcon();
case 14 -> Textures.BlockIcons.RADIATOR_MS160.getIcon();
+ case 15 -> ordinalSide > 1 ? Textures.BlockIcons.CASING_REINFORCED_WOOD.getIcon()
+ : Textures.BlockIcons.CASING_REINFORCED_WOOD_TOP.getIcon();
default -> Textures.BlockIcons.MACHINE_CASING_ROBUST_TUNGSTENSTEEL.getIcon();
};
}