From a2eeb67c63d922e3f6349893e2b14392beea937a Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Thu, 25 May 2017 20:43:32 +0000 Subject: [PATCH] Remove Shard-Specific Data from Info --- commands/util/info.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/util/info.js b/commands/util/info.js index dc833900..0a82d22c 100644 --- a/commands/util/info.js +++ b/commands/util/info.js @@ -29,15 +29,15 @@ module.exports = class InfoCommand extends Command { Created ${moment.duration(Date.now() - this.client.user.createdTimestamp).format('y[ years], M[ months], w[ weeks, and ]d[ days]')} ago! `) .addField('Servers', - `${this.client.guilds.size} / ${guilds.reduce((prev, val) => prev + val, 0)}`, true) + guilds.reduce((prev, val) => prev + val, 0), true) .addField('Shards', - `${this.client.options.shardCount} (${this.client.shard.id})`, true) + this.client.options.shardCount, true) .addField('Commands', this.client.registry.commands.size, true) .addField('Source Code', '[View Here](https://github.com/dragonfire535/xiaobot)', true) .addField('Memory Usage', - `${Math.round(process.memoryUsage().heapUsed / 1024 / 1024)}MB / ${memory.reduce((prev, val) => prev + val, 0)}MB`, true) + `${memory.reduce((prev, val) => prev + val, 0)}MB`, true) .addField('Uptime', moment.duration(this.client.uptime).format('d[d]h[h]m[m]s[s]'), true) .addField('Version',