Skip to content

Commit

Permalink
Add back "L" suffix to the fluid amount
Browse files Browse the repository at this point in the history
  • Loading branch information
Zorbatron committed Feb 8, 2025
1 parent 6757158 commit ff050f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ private int addFluidOutputLine(@NotNull List<FluidStack> fluidOutputs, int recip
if (printedLines >= maxLines) break;

IKey fluidName = KeyUtil.fluid(TextFormatting.AQUA, entry.getKey());
IKey fluidAmount = KeyUtil.number(TextFormatting.GOLD, entry.getValue());
IKey fluidAmount = KeyUtil.number(TextFormatting.GOLD, entry.getValue(), "L");
IKey fluidRate = KeyUtil.string(TextFormatting.WHITE, formatRecipeRate(recipeLength, entry.getValue()));

addKey(formatRecipeData(fluidName, fluidAmount, fluidRate));
Expand Down

0 comments on commit ff050f7

Please sign in to comment.