Current Changes are in

This commit is contained in:
Daniel Odendahl Jr
2017-03-23 22:25:44 +00:00
parent c2f06d25b1
commit 5329d08581
12 changed files with 103 additions and 90 deletions
+1 -1
View File
@@ -18,6 +18,6 @@ module.exports = class UptimeCommand extends commando.Command {
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
}
console.log(`[Command] ${message.content}`);
return message.channel.send(`I've been active on this shard for: **${moment.duration(this.client.uptime).format('d[ days], h[ hours], m[ minutes, and ]s[ seconds]')}** in **${this.client.guilds.size} Servers.**`);
let uptimeMes = await message.channel.send(`I've been active on this shard for: **${moment.duration(this.client.uptime).format('d[ days], h[ hours], m[ minutes, and ]s[ seconds]')}** in **${this.client.guilds.size} Servers.**`);
}
};