aboutsummaryrefslogtreecommitdiff
path: root/commands/softban.js
diff options
context:
space:
mode:
authorUnknown <jtsshieh@outlook.com>2018-02-24 11:56:04 -0500
committerUnknown <jtsshieh@outlook.com>2018-02-24 11:56:04 -0500
commit1d80e28aac0da59efc73fc29d3fb3925f893c29d (patch)
tree3b6ac75c3bca2df0b854a3528a683209fb01defa /commands/softban.js
parent83bfe82d30e67c19a1934848570886d07992189d (diff)
downloadPokeBot-1d80e28aac0da59efc73fc29d3fb3925f893c29d.tar.gz
PokeBot-1d80e28aac0da59efc73fc29d3fb3925f893c29d.tar.bz2
PokeBot-1d80e28aac0da59efc73fc29d3fb3925f893c29d.zip
Warn
Diffstat (limited to 'commands/softban.js')
-rw-r--r--commands/softban.js4
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?');