From 8085da04648df1ee5a1610f11372d5ad4a288075 Mon Sep 17 00:00:00 2001 From: Loic Bersier Date: Sat, 3 Nov 2018 01:53:06 +0100 Subject: [PATCH] fixed feedback --- commands/utility/feedback.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/utility/feedback.js b/commands/utility/feedback.js index b636fc88..639c7d5e 100644 --- a/commands/utility/feedback.js +++ b/commands/utility/feedback.js @@ -26,7 +26,7 @@ module.exports = class feedbackCommand extends Command { async run(message, { text }) { if(blacklist[msg.author.id]) - return msg.channel.send("You are blacklisted") + return message.channel.send("You are blacklisted") const channel = this.client.channels.get(feedbackChannel); channel.send(`from ${message.author.username} (${message.author} : ${message.author.id}): ${text}`); message.say('Your feedback has been sent!');