From f0385ce17723bead3beaaa7392df5234163042b6 Mon Sep 17 00:00:00 2001 From: Bsian Date: Tue, 29 Oct 2019 20:14:02 +0000 Subject: [PATCH] Stop creating another message --- 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 f326669..ee5ea30 100644 --- a/src/commands/modlogs.ts +++ b/src/commands/modlogs.ts @@ -54,7 +54,7 @@ export default class Modlogs extends Command { if (embeds.length === 1) { // @ts-ignore - message.channel.createMessage({ embed: embeds[0] }); + msg.edit({ content: '', embed: embeds[0] }); } else { createPaginationEmbed(message, this.client, embeds, {}, msg); }