Skip to content

Commit

Permalink
Merge pull request #9 from mik-at/patch-5
Browse files Browse the repository at this point in the history
Update oidacount.js
  • Loading branch information
akargl authored Feb 24, 2021
2 parents 4e4619b + 732d738 commit eeb6657
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions commands/oidacount.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
},
};
};

0 comments on commit eeb6657

Please sign in to comment.