Revert some stuff

This commit is contained in:
Daniel Odendahl Jr
2017-10-22 23:25:43 +00:00
parent 53a99ab85f
commit f75372d2c2
18 changed files with 229 additions and 91 deletions
+2 -3
View File
@@ -16,13 +16,12 @@ module.exports = class InfoCommand extends Command {
});
}
async run(msg) {
const guilds = await this.client.shard.fetchClientValues('guilds.size');
run(msg) {
const embed = new MessageEmbed()
.setColor(0x00AE86)
.setFooter('©2017 dragonfire535#8081')
.addField(' Servers',
guilds.reduce((prev, val) => prev + val, 0), true)
this.client.guilds.size, true)
.addField(' Home Server',
`[Here](https://${this.client.options.invite})`, true)
.addField(' Invite',
+1 -1
View File
@@ -7,7 +7,7 @@ module.exports = class UptimeCommand extends Command {
name: 'uptime',
group: 'util',
memberName: 'uptime',
description: 'Responds with how long the bot has been active on this Shard.',
description: 'Responds with how long the bot has been active.',
guarded: true
});
}