From 15ca94c21273b73c8ee409f7ea027094b32c7797 Mon Sep 17 00:00:00 2001 From: toast-ts <96593068+toast-ts@users.noreply.github.com> Date: Sun, 18 Dec 2022 00:35:08 +1100 Subject: [PATCH] Update statistics.ts --- src/commands/statistics.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/statistics.ts b/src/commands/statistics.ts index 1e25c0e..8c76883 100644 --- a/src/commands/statistics.ts +++ b/src/commands/statistics.ts @@ -16,7 +16,7 @@ export default { includedCommands.forEach(command=>{ const name = command.default.data.name; const count = command.uses.toString(); - rows.push(`${name + ' '.repeat(nameLength - name.length)}${' '.repeat(amountLength - count.length) + count}\n`); + rows.push(`${name + '_'.repeat(nameLength - name.length)}${'_'.repeat(amountLength - count.length) + count}\n`); }); const embed = new client.embed().setColor(client.config.embedColor).setTitle('Statistics: Command Usage') .setDescription([ @@ -66,7 +66,7 @@ export default { `**Load Usage:**\nUser: ${currentLoad.currentLoadUser.toFixed(1)}%\nSystem: ${currentLoad.currentLoadSystem.toFixed(1)}%`, `**Uptime:**\nHost: ${client.formatTime((os.uptime()*1000), 2, {longNames: true, commas: true})}\nBot: ${client.formatTime(client.uptime as number, 2, {commas: true, longNames: true})}` ].join('\n')) - .setFooter({text: `Load time: ${Date.now() - interaction.createdTimestamp}ms`}); + .setFooter({text: `Load time: ${client.formatTime(Date.now() - interaction.createdTimestamp, 2, {longNames: true, commas: true})}`}); interaction.editReply({embeds: [embed, embed1]}); }, data: new SlashCommandBuilder()