From df7073e8df88f16c733e8e9661bdf837937d067f Mon Sep 17 00:00:00 2001 From: Supositware Date: Fri, 3 May 2019 11:52:31 +0200 Subject: [PATCH] added a space --- commands/admin/kick.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/admin/kick.js b/commands/admin/kick.js index 6705adb..6561b1f 100644 --- a/commands/admin/kick.js +++ b/commands/admin/kick.js @@ -41,7 +41,7 @@ class KickCommand extends Command { await member.send(`You have been kicked from **${message.guild.name}** for the following reasons: "**${reasons}**"`) .catch(() => console.log('could not send message to the concerned user')); - return member.kick(`Kicked by : ${message.author.username} for the following reasons : ${reasons}`) + return member.kick(`Kicked by : ${message.author.username} for the following reasons: ${reasons}`) .then(() => message.reply(`${member.user.username} was succesfully kicked with the following reasons "${reasons}".`)) .catch(err => console.error(err)); }