1
0
Fork 0

Diagnosing issue

refactor/models
Bsian 2019-10-29 17:29:14 +00:00
parent b5e143a31c
commit 3ac6b28e38
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ export default class Modlogs extends Command {
embed.setAuthor('Library of Code | Cloud Services', this.client.user.avatarURL, 'https://libraryofcode.org/');
embed.setTitle('Cloud Modlogs/Infractions');
embed.setFooter(`Requested by ${message.author.username}#${message.author.discriminator}`, message.author.avatarURL);
l.forEach((f) => embed.addField(f.name, f.value, f.inline));
l.forEach((f) => { this.client.signale.note(f); embed.addField(f.name, f.value, f.inline); });
embed.setTimestamp();
embed.setColor(3447003);
return embed;