diff options
Diffstat (limited to 'commands/ban.js')
| -rw-r--r-- | commands/ban.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/ban.js b/commands/ban.js index a661417..adb8e43 100644 --- a/commands/ban.js +++ b/commands/ban.js @@ -29,7 +29,7 @@ module.exports.run = async (client, message, args) => { const member = message.mentions.members.first(); if (!member) return message.reply("Uhh... Please mention a member first."); member.ban(`Banned by ${message.author.tag} Reason: ` + mreason); - message.reply(`${member.user.tag} has been banned! Reason: ` + mreason); + message.reply(`${member.user.tag} has been banned for the reason: ` + mreason); }; exports.conf = { |
