Skip to content

Commit 87a97d4

Browse files
committed
information about the leaderboard being monthly
This is added to DMs and the leaderboard but not to the profile page
1 parent bd24093 commit 87a97d4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/net/javadiscord/javabot/systems/notification/QOTWNotificationService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public void sendSubmissionDeclinedEmbed() {
6565
.setDescription(String.format(
6666
"""
6767
Your submission was marked as the best answer!
68-
You've been granted **`1 extra QOTW-Point`**! (total: %s)""", points))
68+
You've been granted **`1 extra QOTW-Point`**! (monthly total: %s)""", points))
6969
.build();
7070
}
7171

@@ -75,7 +75,7 @@ public void sendSubmissionDeclinedEmbed() {
7575
.setDescription(String.format(
7676
"""
7777
Your submission was accepted! %s
78-
You've been granted **`1 QOTW-Point`**! (total: %s)""",
78+
You've been granted **`1 QOTW-Point`**! (monthly total: %s)""",
7979
systemsConfig.getEmojiConfig().getSuccessEmote(guild.getJDA()), points))
8080
.build();
8181
}

src/main/java/net/javadiscord/javabot/systems/user_commands/leaderboard/QOTWLeaderboardSubcommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ private MessageEmbed buildLeaderboardRankEmbed(Member member) {
107107
.setAuthor(member.getUser().getAsTag(), null, member.getEffectiveAvatarUrl())
108108
.setTitle("Question of the Week Leaderboard")
109109
.setDescription(points == 0 ? "You are currently not ranked." :
110-
String.format("You're currently in `%s` place with `%s` %s.", rank + rankSuffix, points, pointsText))
110+
String.format("This month, you're in `%s` place with `%s` %s.", rank + rankSuffix, points, pointsText))
111111
.setTimestamp(Instant.now())
112112
.build();
113113
}

0 commit comments

Comments
 (0)