diff options
Diffstat (limited to 'commands/softban.js')
| -rw-r--r-- | commands/softban.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/softban.js b/commands/softban.js index b942b3e..d17b8c1 100644 --- a/commands/softban.js +++ b/commands/softban.js @@ -1,6 +1,6 @@ exports.run = async (bot, msg, args) => { - if (!msg.member.hasPermission('BAN_MEMBERS')) return msg.reply('You don\'t have permssion to ban members'); - if (!msg.guild.member(bot.user).hasPermission('BAN_MEMBERS')) return msg.reply('I don\'t have permssion to ban members'); + if (!msg.member.hasPermission('BAN_MEMBERS')) return msg.reply('You don\'t have permssion to ban members.'); + if (!msg.guild.member(bot.user).hasPermission('BAN_MEMBERS')) return msg.reply('I don\'t have permssion to ban members.'); const member = msg.mentions.members.first(); if (!member) return await msg.reply('Who am I gonna softban?'); |
