From e2368bb1fef758a77251403fe332404d51bbf8ca Mon Sep 17 00:00:00 2001 From: MARCROCK22 <57925328+MARCROCK22@users.noreply.github.com> Date: Mon, 18 Mar 2024 19:10:22 -0400 Subject: [PATCH] fullCommandName --- src/commands/applications/chatcontext.ts | 4 ++++ src/commands/applications/menucontext.ts | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/commands/applications/chatcontext.ts b/src/commands/applications/chatcontext.ts index d8970f4..b5a44cd 100644 --- a/src/commands/applications/chatcontext.ts +++ b/src/commands/applications/chatcontext.ts @@ -57,6 +57,10 @@ export class CommandContext( body: InteractionCreateBodyRequest, fetchReply?: FR, diff --git a/src/commands/applications/menucontext.ts b/src/commands/applications/menucontext.ts index 1c46077..feb269a 100644 --- a/src/commands/applications/menucontext.ts +++ b/src/commands/applications/menucontext.ts @@ -63,6 +63,10 @@ export class MenuCommandContext< return this.client.langs.get(this.interaction.locale); } + get fullCommandName() { + return this.command.name; + } + write( body: InteractionCreateBodyRequest, fetchReply?: FR,