From 9c929a4d989a0a304900f02e7e7214b095d96a2f Mon Sep 17 00:00:00 2001 From: Mufaro <81554673+xMufaro@users.noreply.github.com> Date: Mon, 17 Apr 2023 01:44:33 +0200 Subject: [PATCH] messageTags: Fix duplicate entries & replies (#922) Co-authored-by: V --- src/api/Commands/index.ts | 1 + src/plugins/messageTags.ts | 13 ++++++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/api/Commands/index.ts b/src/api/Commands/index.ts index 88139d4d3..3f639a18a 100644 --- a/src/api/Commands/index.ts +++ b/src/api/Commands/index.ts @@ -111,6 +111,7 @@ function registerSubCommands(cmd: Command, plugin: string) { ...o, type: ApplicationCommandType.CHAT_INPUT, name: `${cmd.name} ${o.name}`, + id: `${o.name}-${cmd.id}`, displayName: `${cmd.name} ${o.name}`, subCommandPath: [{ name: o.name, diff --git a/src/plugins/messageTags.ts b/src/plugins/messageTags.ts index 490edc342..02d1e529f 100644 --- a/src/plugins/messageTags.ts +++ b/src/plugins/messageTags.ts @@ -234,12 +234,15 @@ export default definePlugin({ }); break; // end 'preview' } - } - return sendBotMessage(ctx.channel.id, { - author, - content: "Invalid sub-command" - }); + default: { + sendBotMessage(ctx.channel.id, { + author, + content: "Invalid sub-command" + }); + break; + } + } } } ]