diff options
| author | OmdaCZ <140348253+OmdaCZ@users.noreply.github.com> | 2024-09-06 11:11:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-06 09:11:05 +0000 |
| commit | 4368fe33a3627cab93a5b8d51dbfea40b2b2607a (patch) | |
| tree | 437a5fa8d246f0875acc353af3dc3d6a67e7263e /src/main/java/gregtech/common/blocks | |
| parent | 1d464dce567a61fa85b667199c432da02fa81545 (diff) | |
| download | GT5-Unofficial-4368fe33a3627cab93a5b8d51dbfea40b2b2607a.tar.gz GT5-Unofficial-4368fe33a3627cab93a5b8d51dbfea40b2b2607a.tar.bz2 GT5-Unofficial-4368fe33a3627cab93a5b8d51dbfea40b2b2607a.zip | |
Multiblock machine for Fluid Solidifier (#2808)
Co-authored-by: Mary Hopson <doyoumined@gmail.com>
Co-authored-by: GDCloud <gdcloudstrike@gmail.com>
Co-authored-by: Dream Master <dream-master@gmx.net>
Co-authored-by: Caedis <Caedis@users.noreply.github.com>
Co-authored-by: NotAPenguin <michiel.vandeginste@gmail.com>
Diffstat (limited to 'src/main/java/gregtech/common/blocks')
| -rw-r--r-- | src/main/java/gregtech/common/blocks/BlockCasings10.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/java/gregtech/common/blocks/BlockCasings10.java b/src/main/java/gregtech/common/blocks/BlockCasings10.java index 11c3f81f01..e5c2e96f32 100644 --- a/src/main/java/gregtech/common/blocks/BlockCasings10.java +++ b/src/main/java/gregtech/common/blocks/BlockCasings10.java @@ -33,6 +33,9 @@ public class BlockCasings10 extends BlockCasingsAbstract { GTLanguageManager .addStringLocalization(getUnlocalizedName() + ".12.name", "Background Radiation Absorbent Casing"); + GTLanguageManager.addStringLocalization(getUnlocalizedName() + ".13.name", "Solidifier Casing"); + GTLanguageManager.addStringLocalization(getUnlocalizedName() + ".14.name", "Solidifier Radiator"); + ItemList.Casing_Electromagnetic_Separator.set(new ItemStack(this, 1, 0)); ItemList.Casing_Laser.set(new ItemStack(this, 1, 1)); ItemList.BlockQuarkContainmentCasing.set(new ItemStack(this, 1, 2)); @@ -46,6 +49,8 @@ public class BlockCasings10 extends BlockCasingsAbstract { ItemList.Heating_Duct_Casing.set(new ItemStack(this, 1, 10)); ItemList.Extreme_Density_Casing.set(new ItemStack(this, 1, 11)); 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)); } @Override @@ -70,6 +75,8 @@ public class BlockCasings10 extends BlockCasingsAbstract { case 10 -> Textures.BlockIcons.MACHINE_CASING_PIPE_BRONZE.getIcon(); case 11 -> Textures.BlockIcons.EXTREME_DENSITY_CASING.getIcon(); case 12 -> Textures.BlockIcons.RADIATION_ABSORBENT_CASING.getIcon(); + case 13 -> Textures.BlockIcons.MACHINE_CASING_MS160.getIcon(); + case 14 -> Textures.BlockIcons.RADIATOR_MS160.getIcon(); default -> Textures.BlockIcons.MACHINE_CASING_ROBUST_TUNGSTENSTEEL.getIcon(); }; } |
