Skip to content

Commit 3a5a72b

Browse files
increased text progessbar size
1 parent 8fc19c3 commit 3a5a72b

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
@@ -88,7 +88,7 @@ private String formatExperience(Guild guild, HelpAccount account) {
8888
double percentToGoalXp = (currentXp / goalXp) * 100.0;
8989
sb.append(String.format("%.0f / %.0f XP (%.2f%%) until %s\n", currentXp, goalXp, percentToGoalXp, nextRoleAndXp.first().getAsMention()))
9090
.append(String.format("%.0f Total XP\n", account.getExperience()))
91-
.append(StringUtils.buildTextProgressBar(percentToGoalXp / 100.0, 12));
91+
.append(StringUtils.buildTextProgressBar(percentToGoalXp / 100.0, 20));
9292
} else {
9393
sb.append(String.format("%.0f Total XP (MAX. LEVEL)", account.getExperience()));
9494
}

0 commit comments

Comments
 (0)