From 99f6845bd32373cc84350496cda9cefbcff5298f Mon Sep 17 00:00:00 2001 From: Jordan Byrne Date: Thu, 8 Feb 2018 14:23:14 +1000 Subject: + Added Plugin system. $ Fixed issue with Fishing Pond. --- .../multi/GregtechMetaTileEntity_IndustrialFishingPond.java | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines') 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(); -- cgit