return and await

This commit is contained in:
Daniel Odendahl Jr
2017-03-23 13:16:59 +00:00
parent cea110ce4b
commit 7c0a39ec5c
83 changed files with 295 additions and 264 deletions
+8 -8
View File
@@ -21,13 +21,13 @@ module.exports = class KickCommand extends commando.Command {
let userToKick = message.mentions.users.first();
let reason = message.content.split(" ").slice(2).join(" ");
if (message.mentions.users.size !== 1) {
message.channel.send(":x: Error! Please mention one user!");
return message.channel.send(":x: Error! Please mention one user!");
}
else {
if (message.member.hasPermission('KICK_MEMBERS')) {
if (message.guild.member(userToKick).kickable) {
message.channel.send(":ok_hand:");
message.guild.member(userToKick).kick();
await message.channel.send(":ok_hand:");
await message.guild.member(userToKick).kick();
if (message.guild.channels.exists("name", "mod_logs")) {
const embed = new Discord.RichEmbed()
.setAuthor(`${message.author.username}#${message.author.discriminator}`, message.author.avatarURL)
@@ -35,23 +35,23 @@ module.exports = class KickCommand extends commando.Command {
.setFooter('XiaoBot Moderation', this.client.user.avatarURL)
.setTimestamp()
.setDescription(`**Member:** ${userToKick.username}#${userToKick.discriminator} (${userToKick.id})\n**Action:** Kick\n**Reason:** ${reason}`);
message.guild.channels.find('name', 'mod_logs').sendEmbed(embed).catch(console.error);
return message.guild.channels.find('name', 'mod_logs').sendEmbed(embed).catch(console.error);
}
else {
message.channel.send(":notepad_spiral: **Note: No log will be sent, as there is not a channel named 'mod_logs'. Please create it to use the logging feature.**");
return message.channel.send(":notepad_spiral: **Note: No log will be sent, as there is not a channel named 'mod_logs'. Please create it to use the logging feature.**");
}
}
else {
message.channel.send(":x: Error! This member cannot be kicked! Perhaps they have a higher role than me?");
return message.channel.send(":x: Error! This member cannot be kicked! Perhaps they have a higher role than me?");
}
}
else {
message.channel.send(":x: Error! You don't have the Kick Members Permission!");
return message.channel.send(":x: Error! You don't have the Kick Members Permission!");
}
}
}
else {
message.channel.send(":x: Error! This command does not work in DM!");
return message.channel.send(":x: Error! This command does not work in DM!");
}
}
};