Skip to content

Commit ce79f78

Browse files
Replaced "▁" with "░"
1 parent 3a5a72b commit ce79f78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/javadiscord/javabot/util/StringUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public static String buildTextProgressBar(double value, int length) {
9494
double elementsFilled = barElements * value;
9595
int wholeElementsFilled = (int) Math.floor(elementsFilled);
9696
sb.append("█".repeat(wholeElementsFilled));
97-
sb.append("".repeat(barElements - wholeElementsFilled));
97+
sb.append("".repeat(barElements - wholeElementsFilled));
9898
sb.append(']');
9999
return sb.toString();
100100
}

0 commit comments

Comments
 (0)