Fixed a bug where cicuit configs for distilleries ranged from 0-10
instead of 1-11
This commit is contained in:
parent
c38cc2bc7b
commit
e445fafd32
1 changed files with 1 additions and 1 deletions
|
@ -358,7 +358,7 @@ public class GT_RecipeAdder
|
|||
@Override
|
||||
public boolean addUniversalDistillationRecipe(FluidStack aInput, FluidStack[] aOutputs, ItemStack aOutput2, int aDuration, int aEUt) {
|
||||
for (int i = 0; i < Math.min(aOutputs.length, 11); i++) {
|
||||
addDistilleryRecipe(GT_Utility.getIntegratedCircuit(i), aInput, aOutputs[i], aDuration * 2, aEUt / 4, false);
|
||||
addDistilleryRecipe(i + 1, aInput, aOutputs[i], aDuration * 2, aEUt / 4, false);
|
||||
}
|
||||
return addDistillationTowerRecipe(aInput, aOutputs, aOutput2, aDuration, aEUt);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue