diff options
author | Tom Dickson <github@bombcar.com> | 2021-11-25 06:30:32 -0600 |
---|---|---|
committer | Tom Dickson <github@bombcar.com> | 2021-11-25 06:30:32 -0600 |
commit | af441c7a5f5ceab909c00dd794b7ce25d8925c49 (patch) | |
tree | 5c8fb1cb5e3d5989ab246f4deb94433202f87cc8 | |
parent | 93067011c8289efbff8b9a223021b4e3107235f8 (diff) | |
download | GT5-Unofficial-af441c7a5f5ceab909c00dd794b7ce25d8925c49.tar.gz GT5-Unofficial-af441c7a5f5ceab909c00dd794b7ce25d8925c49.tar.bz2 GT5-Unofficial-af441c7a5f5ceab909c00dd794b7ce25d8925c49.zip |
correct style
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java index 65470e0981..8d778d4e67 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java @@ -766,7 +766,9 @@ public class GregtechMTE_ChemicalPlant extends GregtechMeta_MultiBlockBase { this.mOutputItems = tOutputItems; this.mOutputFluids = tOutputFluids; updateSlots(); - for (GT_MetaTileEntity_Hatch_Catalysts h : mCatalystBuses) h.updateSlots(); + for (GT_MetaTileEntity_Hatch_Catalysts h : mCatalystBuses) { + h.updateSlots(); + } // Play sounds (GT++ addition - GT multiblocks play no sounds) startProcess(); |