Proper await

This commit is contained in:
Daniel Odendahl Jr
2017-03-24 02:29:31 +00:00
parent 5329d08581
commit 122fcf5de3
103 changed files with 613 additions and 577 deletions
+1 -1
View File
@@ -25,6 +25,6 @@ module.exports = class ServersCommand extends commando.Command {
let guildCount = this.client.guilds.size;
let guildNames = this.client.guilds.map(g => `${g.name} (${g.id})`).join(", ");
console.log(`${guildCount} Servers: ${guildNames}`);
return message.channel.send("Sent the information to the console!");
message.channel.send("Sent the information to the console!");
}
};