Skip to content

Commit 4360c28

Browse files
authored
Merge pull request #434 from danthe1st/help-account-message-fix
fix message in /help account
2 parents 256db6f + a48cea0 commit 4360c28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ private FileUpload generatePlot(User user) {
145145
.setAuthor(UserUtils.getUserTag(user), null, user.getEffectiveAvatarUrl())
146146
.setTitle("Help Account")
147147
.setThumbnail(user.getEffectiveAvatarUrl())
148-
.setDescription("Here are some statistics about how you've helped others here.")
149-
.addField("Experience (BETA)", formatExperience(guild, account), false)
148+
.setDescription("Here are some statistics about how " + user.getAsMention() + " has helped others here.")
149+
.addField("Experience", formatExperience(guild, account), false)
150150
.addField("Total Times Thanked", String.format("**%s**", totalThanks), true)
151151
.addField("Times Thanked This Week", String.format("**%s**", weekThanks), true);
152152
if (upload != null) {

0 commit comments

Comments
 (0)