forked from Supositware/Haha-Yes
allow using without being in guild
This commit is contained in:
parent
3b2e306977
commit
422cf38dd5
1 changed files with 3 additions and 3 deletions
|
@ -35,9 +35,9 @@ class FeedbackCommand extends Command {
|
|||
const channel = this.client.channels.resolve(feedbackChannel);
|
||||
|
||||
const Embed = this.client.util.embed()
|
||||
.setAuthor(`${message.author.username} (${message.author.id})`, message.author.displayAvatarURL())
|
||||
.addField('Guild', `${message.guild.name} (${message.guild.id})`, true)
|
||||
.addField('Feedback', args.text)
|
||||
.setAuthor(`${message.author.username} (${message.author.id})`, message.author.displayAvatarURL());
|
||||
if (message.guild) Embed.addField('Guild', `${message.guild.name} (${message.guild.id})`, true);
|
||||
Embed.addField('Feedback', args.text)
|
||||
.setTimestamp();
|
||||
channel.send({embed: Embed});
|
||||
|
||||
|
|
Loading…
Reference in a new issue