diff --git a/commands/100-games/leaderboard.js b/commands/100-games/leaderboard.js index 160b066..eb9035f 100644 --- a/commands/100-games/leaderboard.js +++ b/commands/100-games/leaderboard.js @@ -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()