Hide users with no beat games from the leaderboard

This commit is contained in:
baz 2024-02-16 17:54:49 +00:00
parent 4bdc193feb
commit 537f5dab07
1 changed files with 7 additions and 5 deletions

View File

@ -16,15 +16,17 @@ module.exports = {
for (let i = 0; i < leaderboard.length; i++) {
let newLine = String.prototype.concat('#', (i + 1), ' \t', leaderboard[i].username, ' - ', leaderboard[i].count, ' games');
if (leaderboard[i].count > 0) {
let newLine = String.prototype.concat('#', (i + 1), ' \t', leaderboard[i].username, ' - ', leaderboard[i].count, ' games');
if (i == 0) newLine = String.prototype.concat('**', newLine, '**');
if (i == 0) newLine = String.prototype.concat('**', newLine, '**');
if (leaderboard[i].username == interaction.user.username) newLine = String.prototype.concat('*', newLine, '*');
if (leaderboard[i].username == interaction.user.username) newLine = String.prototype.concat('*', newLine, '*');
newLine = String.prototype.concat('\n', newLine);
newLine = String.prototype.concat('\n', newLine);
desc = String.prototype.concat(desc, newLine);
desc = String.prototype.concat(desc, newLine);
}
}
const embed = new EmbedBuilder()