diff options
author | Volence <32358820+Volence@users.noreply.github.com> | 2024-08-25 07:50:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-25 11:50:43 +0000 |
commit | 2053bc9fb6fe3d6e334bdf570c0d4916dbad20bb (patch) | |
tree | 7b95935da8d2ebdcb728d0b484b92ae934f4b844 /src/main/java/gregtech/common/blocks | |
parent | 6bfc9636f0b25a46b4dac1e417d2d8a129d477ca (diff) | |
download | GT5-Unofficial-2053bc9fb6fe3d6e334bdf570c0d4916dbad20bb.tar.gz GT5-Unofficial-2053bc9fb6fe3d6e334bdf570c0d4916dbad20bb.tar.bz2 GT5-Unofficial-2053bc9fb6fe3d6e334bdf570c0d4916dbad20bb.zip |
New Multi Autoclave (#2863)
* Create basics of new multi
* Fix forming and recipe processing. Fix tiering and display tiers in waila
* Add textures, clean up some code, rework bonus calculations
* Apply spotless
* add amp limit
* update deps
* Revision: Add 128 mininum casings needed and tooltip
* Revision: Change extended class to ExtendedPowerMultiBlockBase
* Revisions: remove unecessary call to getBaseMetaTileEntity().sendBlockEvent
* Revisions: revised code to break out calculations and show in waila, update calculations to be more inline with other multis
* Finished some other changes and formatting, moved things to lang file
* Update GT_Loader_MetaTileEntities to use star import
* Update src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_MultiAutoclave.java
* spotless
---------
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Co-authored-by: Mary <33456283+FourIsTheNumber@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gregtech/common/blocks')
-rw-r--r-- | src/main/java/gregtech/common/blocks/GT_Block_Casings10.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/java/gregtech/common/blocks/GT_Block_Casings10.java b/src/main/java/gregtech/common/blocks/GT_Block_Casings10.java index 83219f45ee..9c9db0a7e9 100644 --- a/src/main/java/gregtech/common/blocks/GT_Block_Casings10.java +++ b/src/main/java/gregtech/common/blocks/GT_Block_Casings10.java @@ -21,10 +21,12 @@ public class GT_Block_Casings10 extends GT_Block_Casings_Abstract { GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".1.name", "Laser Containment Casing"); GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".2.name", "Quark Exclusion Casing"); + GT_LanguageManager.addStringLocalization(getUnlocalizedName() + ".3.name", "Pressure Containment Casing"); ItemList.Casing_Electromagnetic_Separator.set(new ItemStack(this, 1, 0)); ItemList.BlockQuarkContainmentCasing.set(new ItemStack(this, 1, 2)); ItemList.Casing_Laser.set(new ItemStack(this, 1, 1)); + ItemList.Casing_Autoclave.set(new ItemStack(this, 1, 3)); } @Override @@ -39,6 +41,7 @@ public class GT_Block_Casings10 extends GT_Block_Casings_Abstract { case 0 -> Textures.BlockIcons.MACHINE_CASING_EMS.getIcon(); case 1 -> Textures.BlockIcons.MACHINE_CASING_LASER.getIcon(); case 2 -> Textures.BlockIcons.BLOCK_QUARK_CONTAINMENT_CASING.getIcon(); + case 3 -> Textures.BlockIcons.MACHINE_CASING_AUTOCLAVE.getIcon(); default -> Textures.BlockIcons.MACHINE_CASING_ROBUST_TUNGSTENSTEEL.getIcon(); }; } |