From 99e37993e9f58c8fe6534244029deae9e45b9186 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 7 Jun 2020 17:05:52 -0400 Subject: [PATCH] Fix --- structures/Client.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/structures/Client.js b/structures/Client.js index 2d9af0ae..6c7517ad 100644 --- a/structures/Client.js +++ b/structures/Client.js @@ -56,10 +56,10 @@ module.exports = class XiaoClient extends CommandoClient { } exportCommandLeaderboard() { - let text = '{\n'; + let text = '{'; for (const command of this.registry.commands.values()) { if (command.uses === undefined) continue; - text += `\n "${command.name}":${command.uses},`; + text += `\n "${command.name}": ${command.uses},`; } text = text.slice(0, -1); text += '\n}\n';