Skip to content

Commit

Permalink
Output Line Infinite formatting (#2082)
Browse files Browse the repository at this point in the history
  • Loading branch information
YoungOnionMC authored and krossgg committed Oct 13, 2024
1 parent 164e3e3 commit 0483b5a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,8 @@ public Builder addOutputLines(GTRecipe recipe, int chanceTier) {
FormattingUtil.formatNumber2Places(averageDurationforRoll * countPerSec)));
} else {
textList.add(Component.translatable("gtceu.multiblock.output_line.1",
stack.getHoverName(), stack.getCount(), countPerSec));
stack.getHoverName(), stack.getCount(),
FormattingUtil.formatNumber2Places(countPerSec)));
}
}
}
Expand Down

0 comments on commit 0483b5a

Please sign in to comment.