Skip to content

Commit

Permalink
Added emoji's to the place position of the leaderboard command #patch
Browse files Browse the repository at this point in the history
  • Loading branch information
jordybronowicki37 committed Nov 24, 2024
1 parent 8e55832 commit ba2f93c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public InteractionReplyEditSpec getReplyEditSpec(Snowflake userId, int page) {
var user = users.get(i);
var userName = CommandHandlerHelper.getUserStringValue(user);
var levelData = UserExperienceService.getLevelData(user.getXp());
description.append(String.format("\n**#%d %s**\n", index, userName));
description.append(String.format("\n**%s %s**\n", CommandHandlerHelper.getLeaderboardValue(index), userName));
description.append(String.format("Level %d\n", levelData.level()));
}

Expand Down

0 comments on commit ba2f93c

Please sign in to comment.