From 9b79f652d3145b2d53a3dc76a6984149c6be5f37 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lo=C3=AFc=20Bersier?= <loic.bersier1@gmail.com>
Date: Sun, 9 Sep 2018 00:27:42 +0200
Subject: [PATCH] It now show uptime is seconds instead of milliseconds

---
 commands/thing/stats.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commands/thing/stats.js b/commands/thing/stats.js
index bbac1220..e8218a03 100644
--- a/commands/thing/stats.js
+++ b/commands/thing/stats.js
@@ -10,6 +10,6 @@ module.exports = class MeowCommand extends Command {
     }
 
     run(message) {
-        return message.channel.send(`Servers: \`${this.client.guilds.size}\`\nChannels: \`${this.client.channels.size}\`\nUsers: \`${this.client.users.size}\`\nBot uptime: \`${this.client.uptime}\``);
+        return message.channel.send(`Servers: \`${this.client.guilds.size}\`\nChannels: \`${this.client.channels.size}\`\nUsers: \`${this.client.users.size}\`\nBot uptime: \`${process.uptime()}\``);
     }
 };
\ No newline at end of file