This commit is contained in:
Loic Bersier 2018-11-03 01:54:10 +01:00
parent 8085da0464
commit 817f1341e0

View file

@ -25,7 +25,7 @@ module.exports = class feedbackCommand extends Command {
} }
async run(message, { text }) { async run(message, { text }) {
if(blacklist[msg.author.id]) if(blacklist[message.author.id])
return message.channel.send("You are blacklisted") return message.channel.send("You are blacklisted")
const channel = this.client.channels.get(feedbackChannel); const channel = this.client.channels.get(feedbackChannel);
channel.send(`from ${message.author.username} (${message.author} : ${message.author.id}): ${text}`); channel.send(`from ${message.author.username} (${message.author} : ${message.author.id}): ${text}`);