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,