From 3ac6b28e38e52bd785617f14c3c2e15a20224e77 Mon Sep 17 00:00:00 2001 From: Bsian Date: Tue, 29 Oct 2019 17:29:14 +0000 Subject: [PATCH] Diagnosing issue --- src/commands/modlogs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/modlogs.ts b/src/commands/modlogs.ts index ad3f03b..793e865 100644 --- a/src/commands/modlogs.ts +++ b/src/commands/modlogs.ts @@ -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;