public async Task groupCommand(CommandContext ctx) => await ctx.RespondAsync(embed : EmbedBase.GroupHelpEmbed(ctx.Command, ctx));
public async Task Command(CommandContext ctx) { var embed = EmbedBase.GroupHelpEmbed(ctx.Command); await ctx.RespondAsync(embed : embed); }
public async Task GroupCommand(CommandContext ctx) { await ctx.RespondAsync(null, false, EmbedBase.GroupHelpEmbed(ctx.Command)); }