We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77bf364 commit a133066Copy full SHA for a133066
src/main/java/net/javadiscord/javabot/systems/help/model/HelpAccount.java
@@ -57,7 +57,7 @@ public double getLastExperienceGoal(Guild guild) {
57
* Tries to get the next experience goal based on the current experience count.
58
*
59
* @param guild The current {@link Guild}.
60
- * @return An {@link java.util.Map.Entry} that has the role's id as its key, and the experience needed as its value.
+ * @return A {@link Pair} with both the Role, and the experience needed.
61
*/
62
public Pair<Role, Double> getNextExperienceGoal(Guild guild) {
63
Map<Long, Double> experienceRoles = Bot.config.get(guild).getHelp().getExperienceRoles();
0 commit comments