Skip to content

Commit

Permalink
spunkless
Browse files Browse the repository at this point in the history
  • Loading branch information
serenibyss committed Jan 19, 2024
1 parent 7b8ad2f commit 352f13a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,8 @@ protected void addDisplayText(List<ITextComponent> textList) {
timeToFill));
} else if (averageInLastSec < averageOutLastSec) {
ITextComponent timeToDrain = getTimeToFillDrainText(
energyStored.divide(BigInteger.valueOf((averageOutLastSec - averageInLastSec) * 20)));
energyStored.divide(BigInteger.valueOf(
(averageOutLastSec - averageInLastSec) * 20)));
TextComponentUtil.setColor(timeToDrain, TextFormatting.RED);
tl.add(TextComponentUtil.translationWithColor(
TextFormatting.GRAY,
Expand Down

0 comments on commit 352f13a

Please sign in to comment.