diff options
author | Johannes Gäßler <updrn@student.kit.edu> | 2017-08-04 10:47:54 +0200 |
---|---|---|
committer | Johannes Gäßler <updrn@student.kit.edu> | 2017-08-04 10:47:54 +0200 |
commit | cd4ca84e80151da7107adf7cd889961f4569b436 (patch) | |
tree | 06a904e25dd9d5c7c6507f8aae4a888ada9fc84a /src/main/java/gregtech | |
parent | 60fcf643c961796da32607dd75283b2f9fbb93cd (diff) | |
download | GT5-Unofficial-cd4ca84e80151da7107adf7cd889961f4569b436.tar.gz GT5-Unofficial-cd4ca84e80151da7107adf7cd889961f4569b436.tar.bz2 GT5-Unofficial-cd4ca84e80151da7107adf7cd889961f4569b436.zip |
Fixed a bug with ghost Items left behind in the Large Chemical Reactor
Diffstat (limited to 'src/main/java/gregtech')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeChemicalReactor.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeChemicalReactor.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeChemicalReactor.java index c8f5a4aa8a..e268c3bfe2 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeChemicalReactor.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeChemicalReactor.java @@ -132,6 +132,7 @@ public class GT_MetaTileEntity_LargeChemicalReactor extends GT_MetaTileEntity_Mu this.mMaxProgresstime = maxProgresstime; this.mOutputItems = recipe.mOutputs; this.mOutputFluids = recipe.mFluidOutputs; + this.updateSlots(); return true; } } |