aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlood-Asp <bloodasphendrik@gmail.com>2016-03-28 03:35:21 +0200
committerBlood-Asp <bloodasphendrik@gmail.com>2016-03-28 03:35:21 +0200
commitb8579b2ee33379ab54aa88f027f8550c620d88f6 (patch)
tree9ce9b4bb2de0ae3c8f0d62366747c7d745612044
parentff4cfa3933d9015d1f27bafa908ab7dea2ae6193 (diff)
downloadGT5-Unofficial-b8579b2ee33379ab54aa88f027f8550c620d88f6.tar.gz
GT5-Unofficial-b8579b2ee33379ab54aa88f027f8550c620d88f6.tar.bz2
GT5-Unofficial-b8579b2ee33379ab54aa88f027f8550c620d88f6.zip
small fixes to distillation tower and advMiner2
-rw-r--r--src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java
index 592b827cbf..15e1de6df3 100644
--- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java
+++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java
@@ -113,7 +113,7 @@ public class GT_MetaTileEntity_DistillationTower
}
this.mMaxProgresstime = Math.max(1, this.mMaxProgresstime);
this.mOutputItems = new ItemStack[]{tRecipe.getOutput(0)};
- this.mOutputFluids = tRecipe.mFluidOutputs;
+ this.mOutputFluids = tRecipe.mFluidOutputs.clone();
ArrayUtils.reverse(mOutputFluids);
updateSlots();
return true;