Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
  • Loading branch information
skysthelimitt committed Mar 30, 2024
1 parent 1a818ad commit b7f16d4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
2 changes: 1 addition & 1 deletion commands/levels/leaderboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ module.exports = {
console.log(leaderboard);
let levelEmbed = new EmbedBuilder()
.setTitle("Leaderboard")
for(let i = page*10; i < page*10+10; i++) {
for(let i = page*10; i < page*10+leaderboard.length; i++) {
levelEmbed.addFields({ name: `${i+1}.`, value: `<@${leaderboard[i].userID}>: Level ${leaderboard[i].level}, and ${Math.round(leaderboard[i].points / leaderboard[i].level)}% of the way to the next level!` });
}

Expand Down
13 changes: 0 additions & 13 deletions commands/selenite/ai.js

This file was deleted.

0 comments on commit b7f16d4

Please sign in to comment.