Skip to content

Commit

Permalink
Always place mixed fluid on bottom. Fixes #5820
Browse files Browse the repository at this point in the history
  • Loading branch information
voidsong-dragonfly committed Jun 20, 2024
1 parent ecf1ca1 commit 248ec88
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public int fill(FluidStack resource, FluidAction action)
fs.grow(toFill);
return toFill;
}
this.fluids.add(Utils.copyFluidStackWithAmount(resource, toFill, true));
this.fluids.add(0, Utils.copyFluidStackWithAmount(resource, toFill, true));
return toFill;
}

Expand All @@ -153,7 +153,7 @@ public int fillRecipe(FluidStack resource, FluidAction action)
fs.grow(toFill);
return toFill;
}
this.fluids.add(0, Utils.copyFluidStackWithAmount(resource, toFill, true));
this.fluids.add(Utils.copyFluidStackWithAmount(resource, toFill, true));
return toFill;

}
Expand Down

0 comments on commit 248ec88

Please sign in to comment.