aboutsummaryrefslogtreecommitdiff
path: root/commands/Moderation/kick.js
diff options
context:
space:
mode:
authorpokesudenk <thisis@notarealema.il>2018-03-09 20:38:46 -0500
committerpokesudenk <thisis@notarealema.il>2018-03-09 20:38:46 -0500
commitbac1c22013700a03ca045d3bb08b18619e7aaef0 (patch)
treee3b82ecb4ac8ff1b502a0004ffec52123df9c5f0 /commands/Moderation/kick.js
parente214e6e6f17294acc88e80d57cd90a878e71c5e6 (diff)
downloadPokeBot-bac1c22013700a03ca045d3bb08b18619e7aaef0.tar.gz
PokeBot-bac1c22013700a03ca045d3bb08b18619e7aaef0.tar.bz2
PokeBot-bac1c22013700a03ca045d3bb08b18619e7aaef0.zip
fixed many Grammars
Diffstat (limited to 'commands/Moderation/kick.js')
-rw-r--r--commands/Moderation/kick.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/Moderation/kick.js b/commands/Moderation/kick.js
index ee7bf99..ccd3379 100644
--- a/commands/Moderation/kick.js
+++ b/commands/Moderation/kick.js
@@ -19,7 +19,7 @@
* *************************************/
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.member.hasPermission('KICK_MEMBERS')) return msg.reply('You don\'t have permission 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();