Fixed a bug where the order of DT fluid outputs was actually reversed

This commit is contained in:
Johannes Gäßler 2017-06-06 20:27:20 +02:00
parent c7704610c5
commit 1d636be525

View file

@ -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;
}