aboutsummaryrefslogtreecommitdiff
path: root/commands/kick.js
diff options
context:
space:
mode:
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 = {