diff options
author | bot <krampus.sack.never@gmail.com> | 2020-02-18 17:43:33 +0000 |
---|---|---|
committer | bot <krampus.sack.never@gmail.com> | 2020-02-18 17:43:33 +0000 |
commit | 63d8ed92dc34e62f0b7a5338fd7126e0e6fa01aa (patch) | |
tree | ef4c05612b350e3aec1632fff29da76a07eb7724 /src/Java/gtPlusPlus/xmod/gregtech | |
parent | 0678527ea975b4a95eb7f3d6547b79865b0a2a0e (diff) | |
download | GT5-Unofficial-63d8ed92dc34e62f0b7a5338fd7126e0e6fa01aa.tar.gz GT5-Unofficial-63d8ed92dc34e62f0b7a5338fd7126e0e6fa01aa.tar.bz2 GT5-Unofficial-63d8ed92dc34e62f0b7a5338fd7126e0e6fa01aa.zip |
fix tecttech energy hatch not adding power to storage
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/storage/GregtechMetaTileEntity_PowerSubStationController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/storage/GregtechMetaTileEntity_PowerSubStationController.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/storage/GregtechMetaTileEntity_PowerSubStationController.java index 9b898e34af..3eabcf517e 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/storage/GregtechMetaTileEntity_PowerSubStationController.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/storage/GregtechMetaTileEntity_PowerSubStationController.java @@ -267,7 +267,7 @@ public class GregtechMetaTileEntity_PowerSubStationController extends GregtechMe mAllDynamoHatches.addAll(this.mDynamoHatches); if (LoadedMods.TecTech) { - mAllDynamoHatches.addAll(this.mTecTechEnergyHatches); + mAllEnergyHatches.addAll(this.mTecTechEnergyHatches); mAllDynamoHatches.addAll(this.mTecTechDynamoHatches); } |