Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
31c80e0078
1 changed files with 6 additions and 0 deletions
|
@ -72,9 +72,15 @@ public class GT_MetaTileEntity_LargeTurbine_Steam extends GT_MetaTileEntity_Larg
|
||||||
int remainingFlow = (int) (aOptFlow * 1.25f); // Allowed to use up to 125% of optimal flow. Variable required outside of loop for multi-hatch scenarios.
|
int remainingFlow = (int) (aOptFlow * 1.25f); // Allowed to use up to 125% of optimal flow. Variable required outside of loop for multi-hatch scenarios.
|
||||||
|
|
||||||
for (int i = 0; i < aFluids.size() && remainingFlow > 0; i++) { // loop through each hatch; extract inputs and track totals.
|
for (int i = 0; i < aFluids.size() && remainingFlow > 0; i++) { // loop through each hatch; extract inputs and track totals.
|
||||||
|
<<<<<<< HEAD
|
||||||
String fluidName = aFluids.get(i).getFluid().getUnlocalizedName(aFluids.get(i));
|
String fluidName = aFluids.get(i).getFluid().getUnlocalizedName(aFluids.get(i));
|
||||||
if (fluidName.equals("fluid.steam") || fluidName.equals("ic2.fluidSteam") || fluidName.equals("fluid.mfr.steam.still.name")) {
|
if (fluidName.equals("fluid.steam") || fluidName.equals("ic2.fluidSteam") || fluidName.equals("fluid.mfr.steam.still.name")) {
|
||||||
flow = aFluids.get(i).amount; // Get all (steam) in hatch
|
flow = aFluids.get(i).amount; // Get all (steam) in hatch
|
||||||
|
=======
|
||||||
|
String fluidName = aFluids.get(i).getFluid().getUnlocalizedName(aFluids.get(i));
|
||||||
|
if (fluidName.equals("fluid.steam") || fluidName.equals("ic2.fluidSteam") || fluidName.equals("fluid.mfr.steam.still.name")) {
|
||||||
|
flow = aFluids.get(i).amount; // Get all (steam) in hatch
|
||||||
|
>>>>>>> origin/master
|
||||||
flow = Math.min(flow, Math.min(remainingFlow, (int) (aOptFlow * 1.25f))); // try to use up to 125% of optimal flow w/o exceeding remainingFlow
|
flow = Math.min(flow, Math.min(remainingFlow, (int) (aOptFlow * 1.25f))); // try to use up to 125% of optimal flow w/o exceeding remainingFlow
|
||||||
depleteInput(new FluidStack(aFluids.get(i), flow)); // deplete that amount
|
depleteInput(new FluidStack(aFluids.get(i), flow)); // deplete that amount
|
||||||
remainingFlow -= flow; // track amount we're allowed to continue depleting from hatches
|
remainingFlow -= flow; // track amount we're allowed to continue depleting from hatches
|
||||||
|
|
Loading…
Reference in a new issue