Skip to content

Commit 04e17b6

Browse files
Updated Progressbar
1 parent ddbab97 commit 04e17b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/javadiscord/javabot/systems/help/commands/subcommands/HelpAccountSubcommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ private String formatExperience(Guild guild, HelpAccount account) {
7979
if (goal > 0) {
8080
sb.append(String.format("%.2f XP / %.2f XP (%.2f%%)", current, goal, (current / goal) * 100))
8181
.append("\n")
82-
.append(StringUtils.buildProgressBar(current, goal, "\u2B1B", "\uD83D\uDFE5", 14));
82+
.append(String.format("`[%s]`", StringUtils.buildProgressBar(current, goal, "\u2581", "\u2588", 40)));
8383
} else {
8484
sb.append(String.format("%.2f XP (MAX. LEVEL)", account.getExperience()));
8585
}

0 commit comments

Comments
 (0)