Skip to content

Commit

Permalink
Fix Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
drfiveminusmint authored Jul 2, 2024
1 parent 3a8a27d commit f3b3c6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public boolean isSilenced() {
}

private void updateBossBar () {
bossBar.setTitle("Heat :" + Math.round(heat*10)/10d + " / " + heatCapacity);
bossBar.setTitle("Heat: " + Math.round(heat*10)/10d + " / " + heatCapacity);
if (heat >= heatCapacity*1.5) {
bossBar.setColor(BarColor.RED);
} else if (heat >= heatCapacity) {
Expand Down

0 comments on commit f3b3c6b

Please sign in to comment.