From 56b6b7f3246664343d1603623feadb79f8723818 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Sat, 21 Sep 2019 20:53:15 +0200 Subject: [PATCH] Changed the look of the feedback message --- commands/utility/feedback.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/utility/feedback.js b/commands/utility/feedback.js index 2ee331c..c09279d 100644 --- a/commands/utility/feedback.js +++ b/commands/utility/feedback.js @@ -29,9 +29,9 @@ class FeedbackCommand extends Command { const channel = this.client.channels.get(feedbackChannel); const Embed = new MessageEmbed() - .setAuthor(message.author.username, message.author.displayAvatarURL()) - .setDescription(args.text) - .setFooter(`Author ID: ${message.author.id}`) + .setAuthor(`${message.author.username} (${message.author.id})`, message.author.displayAvatarURL()) + .addField('Guild', `${message.guild.name} (${message.guild.id})`, true) + .addField('Feedback', args.text) .setTimestamp(); channel.send({embed: Embed}); message.channel.send('Your feedback has been sent!');