diff options
author | Johannes Gäßler <updrn@student.kit.edu> | 2017-06-06 20:27:20 +0200 |
---|---|---|
committer | Johannes Gäßler <updrn@student.kit.edu> | 2017-06-06 20:27:20 +0200 |
commit | 1d636be52590efc7cf2b3349fdb36619456f0b66 (patch) | |
tree | 48fae2f65618d1aa2ec5bb6300e5ac6ba52e52c6 /src | |
parent | c7704610c52c12e59c251307c4cbb3eaeb90b978 (diff) | |
download | GT5-Unofficial-1d636be52590efc7cf2b3349fdb36619456f0b66.tar.gz GT5-Unofficial-1d636be52590efc7cf2b3349fdb36619456f0b66.tar.bz2 GT5-Unofficial-1d636be52590efc7cf2b3349fdb36619456f0b66.zip |
Fixed a bug where the order of DT fluid outputs was actually reversed
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_DistillationTower.java | 1 |
1 files changed, 0 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 e2fba442c2..de55cd03db 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 @@ -117,7 +117,6 @@ public class GT_MetaTileEntity_DistillationTower this.mMaxProgresstime = Math.max(1, this.mMaxProgresstime); this.mOutputItems = new ItemStack[]{tRecipe.getOutput(0)}; this.mOutputFluids = tRecipe.mFluidOutputs.clone(); - ArrayUtils.reverse(mOutputFluids); updateSlots(); return true; } |