diff --git a/commands/util-public/command-leaderboard.js b/commands/util-public/command-leaderboard.js index 2bf9cc91..15824fa2 100644 --- a/commands/util-public/command-leaderboard.js +++ b/commands/util-public/command-leaderboard.js @@ -1,5 +1,6 @@ const Command = require('../../structures/Command'); const { stripIndents } = require('common-tags'); +const { formatNumber } = require('../../util/Util'); module.exports = class CommandLeaderboardCommand extends Command { constructor(client) { @@ -46,7 +47,7 @@ module.exports = class CommandLeaderboardCommand extends Command { positionsMoved = 1; } previousPts = command.uses; - return `**${i}.** ${command.name} (${command.uses} Use${command.uses === 1 ? '' : 's'})`; + return `**${i}.** ${command.name} (${formatNumber(command.uses)} Use${command.uses === 1 ? '' : 's'})`; }) .slice((page - 1) * 10, page * 10); } diff --git a/package.json b/package.json index 40d597c2..a80b3e01 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "119.6.0", + "version": "119.6.1", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {