#Need help registering application commands
1 messages · Page 1 of 1 (latest)
Slash command method must have the first argument be of type InteractionContext.
//This will work
public async Task MyCoolSlashCommand(InteractionContext ctx, [Option] long myArgument){}
//This will NOT work
public async Task MyCoolSlashCommand([Option] long myArgument){}