Fixed a bug where the order of DT fluid outputs was actually reversed
This commit is contained in:
parent
c7704610c5
commit
1d636be525
1 changed files with 0 additions and 1 deletions
|
@ -117,7 +117,6 @@ public class GT_MetaTileEntity_DistillationTower
|
||||||
this.mMaxProgresstime = Math.max(1, this.mMaxProgresstime);
|
this.mMaxProgresstime = Math.max(1, this.mMaxProgresstime);
|
||||||
this.mOutputItems = new ItemStack[]{tRecipe.getOutput(0)};
|
this.mOutputItems = new ItemStack[]{tRecipe.getOutput(0)};
|
||||||
this.mOutputFluids = tRecipe.mFluidOutputs.clone();
|
this.mOutputFluids = tRecipe.mFluidOutputs.clone();
|
||||||
ArrayUtils.reverse(mOutputFluids);
|
|
||||||
updateSlots();
|
updateSlots();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue