From 1d80e28aac0da59efc73fc29d3fb3925f893c29d Mon Sep 17 00:00:00 2001 From: Unknown Date: Sat, 24 Feb 2018 11:56:04 -0500 Subject: Warn --- commands/softban.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'commands/softban.js') 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?'); -- cgit v1.2.3