Improve in-bot command documentation

Adds command descriptions, changes formatting on
command listings, and adds more direct command
listing commands.
This commit is contained in:
Ske
2019-11-03 00:29:11 +01:00
parent 53124776d4
commit 0226e73d88
2 changed files with 67 additions and 63 deletions

View File

@@ -7,18 +7,6 @@ namespace PluralKit.Bot.Commands
{
public class HelpCommands
{
public async Task HelpProxy(Context ctx)
{
await ctx.Reply(
"The proxy help page has been moved! See the website: https://pluralkit.me/guide#proxying");
}
public async Task HelpMember(Context ctx)
{
await ctx.Reply(
"The member help page has been moved! See the website: https://pluralkit.me/guide#member-management");
}
public async Task HelpRoot(Context ctx)
{
await ctx.Reply(embed: new EmbedBuilder()
@@ -34,11 +22,5 @@ namespace PluralKit.Bot.Commands
.WithColor(Color.Blue)
.Build());
}
public async Task CommandList(Context ctx)
{
await ctx.Reply(
"The command list has been moved! See the website: https://pluralkit.me/commands");
}
}
}