From af441c7a5f5ceab909c00dd794b7ce25d8925c49 Mon Sep 17 00:00:00 2001 From: Tom Dickson Date: Thu, 25 Nov 2021 06:30:32 -0600 Subject: correct style --- .../multi/production/chemplant/GregtechMTE_ChemicalPlant.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines') 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(); -- cgit