diff options
| author | Alee <alee14498@gmail.com> | 2018-03-25 14:56:15 -0400 |
|---|---|---|
| committer | Alee <alee14498@gmail.com> | 2018-03-25 14:56:15 -0400 |
| commit | 0049a9acc0845f2071e8eb07aae48366fce474e0 (patch) | |
| tree | df38de85577bff1b606f8a3d3e8bf1011b932fea /commands/kick.js | |
| parent | 92b84d51d3b9d8d1ac578e37544d41d37a5b1768 (diff) | |
| download | AleeBot-0049a9acc0845f2071e8eb07aae48366fce474e0.tar.gz AleeBot-0049a9acc0845f2071e8eb07aae48366fce474e0.tar.bz2 AleeBot-0049a9acc0845f2071e8eb07aae48366fce474e0.zip | |
More changes in ban, kick and suggest
Diffstat (limited to 'commands/kick.js')
| -rw-r--r-- | commands/kick.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/kick.js b/commands/kick.js index d7f2dde..5928525 100644 --- a/commands/kick.js +++ b/commands/kick.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.kick(`Kicked by: ${message.author.tag} Reason: ` + mreason); - message.reply(`${member.user.tag} has been kicked! Reason: ` + mreason); + message.reply(`${member.user.tag} has been kicked for the reason: ` + mreason); }; exports.conf = { |
