diff options
| author | Unknown <jtsshieh@outlook.com> | 2018-02-24 11:56:04 -0500 |
|---|---|---|
| committer | Unknown <jtsshieh@outlook.com> | 2018-02-24 11:56:04 -0500 |
| commit | 1d80e28aac0da59efc73fc29d3fb3925f893c29d (patch) | |
| tree | 3b6ac75c3bca2df0b854a3528a683209fb01defa /commands/kick.js | |
| parent | 83bfe82d30e67c19a1934848570886d07992189d (diff) | |
| download | PokeBot-1d80e28aac0da59efc73fc29d3fb3925f893c29d.tar.gz PokeBot-1d80e28aac0da59efc73fc29d3fb3925f893c29d.tar.bz2 PokeBot-1d80e28aac0da59efc73fc29d3fb3925f893c29d.zip | |
Warn
Diffstat (limited to 'commands/kick.js')
| -rw-r--r-- | commands/kick.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/kick.js b/commands/kick.js index 5ed7942..c371c21 100644 --- a/commands/kick.js +++ b/commands/kick.js @@ -1,6 +1,6 @@ exports.run = async (bot, msg, args) => { - if (!msg.member.hasPermission('KICK_MEMBERS')) return msg.reply('You don\'t have permssion to kick members'); - if (!msg.guild.member(bot.user).hasPermission('KICK_MEMBERS')) return msg.reply('I don\'t have permssion to kick members'); + if (!msg.member.hasPermission('KICK_MEMBERS')) return msg.reply('You don\'t have permssion to kick members.'); + if (!msg.guild.member(bot.user).hasPermission('KICK_MEMBERS')) return msg.reply('I don\'t have permssion to kick members.'); const member = msg.mentions.members.first(); if (!member) return await msg.reply('Who am I gonna kick?'); |
