From 13306f17accea5d3653dd4b8670ba0d6ab69c7c5 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Mon, 6 Sep 2021 15:20:46 -0400 Subject: evidence command and more logging --- src/commands/info/botInfo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/commands/info/botInfo.ts') diff --git a/src/commands/info/botInfo.ts b/src/commands/info/botInfo.ts index 45c3dd8..30bfeb4 100644 --- a/src/commands/info/botInfo.ts +++ b/src/commands/info/botInfo.ts @@ -39,7 +39,7 @@ export default class BotInfoCommand extends BushCommand { repoUrl = repoUrl.substring(0, repoUrl.length - 4); const embed = new MessageEmbed() .setTitle('Bot Info:') - .addField('**Uptime**', util.humanizeDuration(client.uptime!), true) + .addField('**Uptime**', util.humanizeDuration(client.uptime!, 2), true) .addField( '**Memory Usage**', `System: ${prettyBytes(os.totalmem() - os.freemem(), { binary: true })}/${prettyBytes(os.totalmem(), { -- cgit