diff options
| author | Alee <alee14498@gmail.com> | 2018-03-25 12:54:20 -0400 |
|---|---|---|
| committer | Alee <alee14498@gmail.com> | 2018-03-25 12:54:20 -0400 |
| commit | d9cf1ae4444678e63d7b0533c54dd5e4043189d7 (patch) | |
| tree | 2433871ead01ccc9b8184d0a600071f02a05bf82 /commands | |
| parent | 0f1f12f10a869c5f297f036aab76871015852e07 (diff) | |
| download | AleeBot-d9cf1ae4444678e63d7b0533c54dd5e4043189d7.tar.gz AleeBot-d9cf1ae4444678e63d7b0533c54dd5e4043189d7.tar.bz2 AleeBot-d9cf1ae4444678e63d7b0533c54dd5e4043189d7.zip | |
Ban command is broken for now
Diffstat (limited to 'commands')
| -rw-r--r-- | commands/ban.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/ban.js b/commands/ban.js index fbf5e7a..f3e88dd 100644 --- a/commands/ban.js +++ b/commands/ban.js @@ -30,9 +30,9 @@ module.exports.run = async (client, message, args) => { if (!member) return message.reply("Uhh... Please mention a member first."); member.ban({ days: args[1] || null, - reason: `Banned by ${message.author.tag}` + reason: `Banned by ${message.author.tag} ${mreason}` }); - message.reply("User Banned!"); + message.reply("User Banned! Reason: " + mreason); }; exports.conf = { |
