aboutsummaryrefslogtreecommitdiff
path: root/commands/kick.js
diff options
context:
space:
mode:
authorAlee <alee14498@gmail.com>2018-03-25 16:08:17 -0400
committerAlee <alee14498@gmail.com>2018-03-25 16:08:17 -0400
commit5833b13dda05d86f73daa27f530fa25fd3ec7618 (patch)
tree335d60c792fd96aa6f229487609211cfaaea6a5e /commands/kick.js
parent77bccfb5cfbba15e749055bc5c756927638a4707 (diff)
downloadAleeBot-5833b13dda05d86f73daa27f530fa25fd3ec7618.tar.gz
AleeBot-5833b13dda05d86f73daa27f530fa25fd3ec7618.tar.bz2
AleeBot-5833b13dda05d86f73daa27f530fa25fd3ec7618.zip
Changes
Diffstat (limited to 'commands/kick.js')
-rw-r--r--commands/kick.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/kick.js b/commands/kick.js
index 5928525..062e035 100644
--- a/commands/kick.js
+++ b/commands/kick.js
@@ -24,7 +24,7 @@
********************************/
module.exports.run = async (client, message, args) => {
const mreason = args.join(" ").slice(22);
- if (!message.member.permissions.has('KICK_MEMBERS')) return message.reply("It looks like that you don't have the permissions to ban people.")
+ if (!message.member.permissions.has('KICK_MEMBERS')) return message.reply("It looks like that you don't have the permissions to ban people.");
if (!message.guild.member(client.user).hasPermission('KICK_MEMBERS')) return message.reply('Uhh... I don\'t have permission to kick members.');
const member = message.mentions.members.first();
if (!member) return message.reply("Uhh... Please mention a member first.");