forked from Supositware/Haha-Yes
fixed an error
This commit is contained in:
parent
cb1b959e15
commit
63f05a4c78
2 changed files with 5 additions and 2 deletions
|
@ -32,6 +32,8 @@ module.exports = class BanCommand extends Command {
|
|||
return message.say("Why would you ban yourself ?")
|
||||
await member.send(`https://youtu.be/55-mHgUjZfY\nYou have been banned for the following reasons: "${reasons}"`);
|
||||
member.ban(`Banned by : ${message.author.username} for the following reasons : ${reasons}`)
|
||||
.then(() => message.reply(`${member.user.username} was succesfully banned with the following reasons "${reasons}".`));
|
||||
.then(() => message.reply(`${member.user.username} was succesfully banned with the following reasons "${reasons}".`))
|
||||
.error(message.say('Cant ban me fool'))
|
||||
|
||||
};
|
||||
};
|
|
@ -32,6 +32,7 @@ module.exports = class KickCommand extends Command {
|
|||
return message.say("Why would you kick yourself ?")
|
||||
await member.send(`You have been kicked for the following reasons: "${reasons}"`);
|
||||
member.kick(`Kicked by : ${message.author.username} for the following reasons : ${reasons}`)
|
||||
.then(() => message.reply(`${member.user.username} was succesfully kicked with the following reasons "${reasons}".`));
|
||||
.then(() => message.reply(`${member.user.username} was succesfully kicked with the following reasons "${reasons}".`))
|
||||
.error(message.say('Cant kick me fool'))
|
||||
};
|
||||
};
|
Loading…
Reference in a new issue