small fixes to distillation tower and advMiner2

This commit is contained in:
Blood-Asp 2016-03-28 03:35:21 +02:00
parent ff4cfa3933
commit b8579b2ee3

View file

@ -113,7 +113,7 @@ 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; this.mOutputFluids = tRecipe.mFluidOutputs.clone();
ArrayUtils.reverse(mOutputFluids); ArrayUtils.reverse(mOutputFluids);
updateSlots(); updateSlots();
return true; return true;