Merge branch 'HbmMods:master' into rulang121

This commit is contained in:
Raaaaaaaaaay 2026-07-06 00:34:40 +03:00 committed by GitHub
commit 3cf166e429
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 17 additions and 11 deletions

View File

@ -83,3 +83,4 @@
* Fixed RoR gauge not using SI suffixes on values below 0
* Fixed AUTOCAL units not closing their GUI when the unit is destroyed
* Fixed AUTOCAL's $buffer$ substitution not working
* Fixed meteorite sword localization still being broken

View File

@ -40,6 +40,8 @@ public class TileEntityPneumoStorageExporter extends TileEntityPneumaticMachineB
public static final int MODE_FULL_REQUEST = 2;
public boolean lastRedstone = false;
public int[] SLOT_ACCESS = new int[] {9, 10, 11, 12, 13, 14, 15, 16, 17};
public TileEntityPneumoStorageExporter() {
super(18);
@ -50,6 +52,9 @@ public class TileEntityPneumoStorageExporter extends TileEntityPneumaticMachineB
return "container.pneumoStorageExporter";
}
@Override public boolean canExtractItem(int slot, ItemStack itemStack, int side) { return slot >= 9; }
@Override public int[] getAccessibleSlotsFromSide(int side) { return SLOT_ACCESS; }
@Override
public void updateEntity() {
super.updateEntity();

View File

@ -3287,27 +3287,27 @@ item.meteor_remote.name=Meteorite Remote
item.meteorite_sword.name=Meteorite Sword
item.meteorite_sword.desc=Forged from a fallen star$Sharper than most terrestrial blades
item.meteorite_sword_seared.name=Meteorite Sword (Seared)
item.meteorite_sword.seared.desc=Fire strengthens the blade$Making it even more powerful
item.meteorite_sword_seared.desc=Fire strengthens the blade$Making it even more powerful
item.meteorite_sword_reforged.name=Meteorite Sword (Reforged)
item.meteorite_sword.reforged.desc=The sword has been reforged$To rectify past imperfections
item.meteorite_sword_reforged.desc=The sword has been reforged$To rectify past imperfections
item.meteorite_sword_hardened.name=Meteorite Sword (Hardened)
item.meteorite_sword.hardened.desc=Extremely high pressure has been used$To harden the blade further
item.meteorite_sword_hardened.desc=Extremely high pressure has been used$To harden the blade further
item.meteorite_sword_alloyed.name=Meteorite Sword (Alloyed)
item.meteorite_sword.alloyed.desc=Cobalt fills the fissures$Strengthening the sword
item.meteorite_sword_alloyed.desc=Cobalt fills the fissures$Strengthening the sword
item.meteorite_sword_machined.name=Meteorite Sword (Machined)
item.meteorite_sword.machined.desc=Advanced machinery was used$To refine the blade even more
item.meteorite_sword_machined.desc=Advanced machinery was used$To refine the blade even more
item.meteorite_sword_treated.name=Meteorite Sword (Treated)
item.meteorite_sword.treated.desc=Chemicals have been applied$Making the sword more powerful
item.meteorite_sword_treated.desc=Chemicals have been applied$Making the sword more powerful
item.meteorite_sword_etched.name=Meteorite Sword (Etched)
item.meteorite_sword.etched.desc=Acids clean the material$To make this the perfect sword
item.meteorite_sword_etched.desc=Acids clean the material$To make this the perfect sword
item.meteorite_sword_bred.name=Meteorite Sword (Bred)
item.meteorite_sword.bred.desc=Immense heat and radiation$Compress the material
item.meteorite_sword_bred.desc=Immense heat and radiation$Compress the material
item.meteorite_sword_irradiated.name=Meteorite Sword (Irradiated)
item.meteorite_sword.irradiated.desc=The power of the Atom$Gives the sword might
item.meteorite_sword_irradiated.desc=The power of the Atom$Gives the sword might
item.meteorite_sword_fused.name=Meteorite Sword (Fused)
item.meteorite_sword.fused.desc=This blade has met$With the forces of the stars
item.meteorite_sword_fused.desc=This blade has met$With the forces of the stars
item.meteorite_sword_baleful.name=Meteorite Sword (Baleful)
item.meteorite_sword.baleful.desc=This sword has met temperatures$Far beyond what normal material can endure
item.meteorite_sword_baleful.desc=This sword has met temperatures$Far beyond what normal material can endure
item.mike_cooling_unit.name=Deuterium Cooling Unit
item.mike_core.name=Uranium Coated Deuterium Tank
item.mike_deut.name=Deuterium Tank

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 7.6 KiB