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.
No description
No description
9 Replies
dan
dan2d ago
You need to pull the command from stores, not application command registry. Use this.container.stores
axel
axelOP2d ago
So something like this? how would I go about running it
No description
dan
dan2d ago
this.container.stores.get('commands').get('fix')!.chatInputRun(interaction);
axel
axelOP2d ago
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?
dan
dan2d ago
Look up what context expects and pass that
axel
axelOP2d ago
ChatInputCommand.RunContext but where would I get that from?
čamdžić
čamdžić2d ago
well since this is a command too
čamdžić
čamdžić2d ago
you add this to your register command
No description
čamdžić
čamdžić2d ago
basically context parameter in chatInputRun and just pass it to here import type { ChatInputCommand } from "@sapphire/framework";

Did you find this page helpful?