diff options
author | Jordan Byrne <draknyte1@hotmail.com> | 2018-02-08 14:23:14 +1000 |
---|---|---|
committer | Jordan Byrne <draknyte1@hotmail.com> | 2018-02-08 14:23:14 +1000 |
commit | 99f6845bd32373cc84350496cda9cefbcff5298f (patch) | |
tree | 86bae64bc9878d97a4e0f7b356d797a406b1c71b /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines | |
parent | f4ac62247a54c38466fb7544aae63e6d97fb2740 (diff) | |
download | GT5-Unofficial-99f6845bd32373cc84350496cda9cefbcff5298f.tar.gz GT5-Unofficial-99f6845bd32373cc84350496cda9cefbcff5298f.tar.bz2 GT5-Unofficial-99f6845bd32373cc84350496cda9cefbcff5298f.zip |
+ Added Plugin system.
$ Fixed issue with Fishing Pond.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialFishingPond.java | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialFishingPond.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialFishingPond.java index 2e1b0aaa34..b9e4fc2880 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialFishingPond.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialFishingPond.java @@ -579,13 +579,9 @@ extends GregtechMeta_MultiBlockBase { rslot++; } - // Commit outputs - for (ItemStack n : tOutputItems) { - this.addOutput(n); - } - - //this.mOutputItems = tOutputItems; - //updateSlots(); + // Commit outputs + this.mOutputItems = tOutputItems; + updateSlots(); // Play sounds (GT++ addition - GT multiblocks play no sounds) startProcess(); |