summaryrefslogtreecommitdiff
path: root/commands/kick.js
diff options
context:
space:
mode:
authorAlee <alee14498@gmail.com>2018-04-13 22:27:30 -0400
committerAlee <alee14498@gmail.com>2018-04-13 22:27:30 -0400
commit3c8be3a161c3fc1b2dbf661453fc7bf96c721403 (patch)
treed009aa948c5f2d3c962f7e20c3feee863ce95886 /commands/kick.js
parent501d5986f7fed5bc7572cbac170e6e9e8720acc8 (diff)
downloadAleeBot-3c8be3a161c3fc1b2dbf661453fc7bf96c721403.tar.gz
AleeBot-3c8be3a161c3fc1b2dbf661453fc7bf96c721403.tar.bz2
AleeBot-3c8be3a161c3fc1b2dbf661453fc7bf96c721403.zip
More changes and interrogate
Diffstat (limited to 'commands/kick.js')
-rw-r--r--commands/kick.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/kick.js b/commands/kick.js
index 6db1ae4..63904c1 100644
--- a/commands/kick.js
+++ b/commands/kick.js
@@ -24,7 +24,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 for the reason: ` + mreason);
+ message.reply(`**${member.user.tag}** has been kicked for the reason: \n\`\`\`${mreason}.\`\`\`\n`);
};
exports.conf = {