[Command("register")]
[Description("Allows user to register use !register yoursteamidhere")]
that description does not show if I find the command in the context, and output description like this:
var commands = await ctx.Client.GetGlobalApplicationCommandsAsync();
var commandList = string.Join("\n", commands.Select(c => $"{c.Name}: {c.Description}"));
await ctx.RespondAsync($"Available commands:\n{commandList}");
Also when trying to use
[DefaultCommand] on a subcommand, it does not seem to work anymore, is there some setting I have not enabled while setting up the bot?