diff --git a/commands/oidacount.js b/commands/oidacount.js index 79d9f23..e59720b 100644 --- a/commands/oidacount.js +++ b/commands/oidacount.js @@ -50,11 +50,13 @@ module.exports = { if (leaderboardString.length + row.length > (2000 - 3)) { break; } - leaderboardString += row; + if (x.count != 0) { + leaderboardString += row; + } } leaderboardString += "```"; return message.channel.send(leaderboardString); }); }, -}; \ No newline at end of file +};