diff options
author | Steelux <70096037+Steelux8@users.noreply.github.com> | 2022-09-14 20:07:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-14 21:07:53 +0200 |
commit | 007609482ffdca396f21a88d1e58c0cc93120839 (patch) | |
tree | 96e58d30d6e537d84dd365b1f2c5a00a0181003b /src/main/java/gtPlusPlus/xmod/gregtech/api | |
parent | 3a5031c52cc537d9ce0b94973f3b60694ddd4703 (diff) | |
download | GT5-Unofficial-007609482ffdca396f21a88d1e58c0cc93120839.tar.gz GT5-Unofficial-007609482ffdca396f21a88d1e58c0cc93120839.tar.bz2 GT5-Unofficial-007609482ffdca396f21a88d1e58c0cc93120839.zip |
Rocketdyne Structure Fix and Cost Reduction (#347)
* Structure Fix and Recipe Change
- Fixed Air Intake Hatches not being detected by the controller;
- Reduced the amount of Tungstensteel needed by replacing some with Titanium.
* Spotless apply for branch Rocketdyne_Changes for #347 (#348)
Co-authored-by: Steelux <70096037+Steelux8@users.noreply.github.com>
Co-authored-by: GitHub GTNH Actions <>
* properly fix structure code
* Changed Pipes and Stick
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Glease <4586901+Glease@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/api')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java b/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java index 2e3bb86147..bc68f667a6 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java @@ -1898,7 +1898,7 @@ public abstract class GregtechMeta_MultiBlockBase<T extends GT_MetaTileEntity_En public boolean addAirIntakeToMachineList(final IGregTechTileEntity aMetaTileEntity, final int aBaseCasingIndex) { if (aMetaTileEntity instanceof GT_MetaTileEntity_Hatch_AirIntake) { - return addToMachineList(aMetaTileEntity, aBaseCasingIndex); + return addToMachineListInternal(mAirIntakes, aMetaTileEntity, aBaseCasingIndex); } return false; } |