aboutsummaryrefslogtreecommitdiff
path: root/commands/kick.js
diff options
context:
space:
mode:
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.");