run other commands inside other commands
im trying to run the "fix" command inside the "register" command but i cant figure out how to. i typed out what im attempting to basically do inside the register command but it obviously doesn't exist.


9 Replies
You need to pull the command from stores, not application command registry. Use
this.container.stores
So something like this? how would I go about running it

this.container.stores.get('commands').get('fix')!.chatInputRun(interaction);
for the run method, its asking me to provide a context parameter. i assumed it would be this.context but that doesnt exist. what should I pass in?
Look up what context expects and pass that
ChatInputCommand.RunContext
but where would I get that from?
well since this is a command too
you add this to your register command

basically context parameter in chatInputRun
and just pass it to here
import type { ChatInputCommand } from "@sapphire/framework";