From 64cc28633dca68e7071e5541a371cad4f35ea525 Mon Sep 17 00:00:00 2001 From: VinDevGH <65317011+VinDevGH@users.noreply.github.com> Date: Fri, 25 Oct 2024 18:40:33 -0500 Subject: fix waterline cycle breaking on reload (#3420) Co-authored-by: Martin Robertz --- .../common/tileentities/multis/mega/MTEMegaDistillTower.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/bartworks/common') diff --git a/src/main/java/bartworks/common/tileentities/multis/mega/MTEMegaDistillTower.java b/src/main/java/bartworks/common/tileentities/multis/mega/MTEMegaDistillTower.java index dec5ff55da..2158436f1e 100644 --- a/src/main/java/bartworks/common/tileentities/multis/mega/MTEMegaDistillTower.java +++ b/src/main/java/bartworks/common/tileentities/multis/mega/MTEMegaDistillTower.java @@ -417,9 +417,9 @@ public class MTEMegaDistillTower extends MegaMultiBlockBase } @Override - protected void addFluidOutputs(FluidStack[] mOutputFluids2) { - for (int i = 0; i < mOutputFluids2.length && i < this.mOutputHatchesByLayer.size(); i++) { - FluidStack tStack = mOutputFluids2[i].copy(); + protected void addFluidOutputs(FluidStack[] outputFluids) { + for (int i = 0; i < outputFluids.length && i < this.mOutputHatchesByLayer.size(); i++) { + FluidStack tStack = outputFluids[i].copy(); if (!dumpFluid(this.mOutputHatchesByLayer.get(i), tStack, true)) dumpFluid(this.mOutputHatchesByLayer.get(i), tStack, false); } -- cgit