mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-14 01:30:13 +00:00
Help page updates
This commit is contained in:
parent
be09c87f52
commit
0aa370e549
6 changed files with 36 additions and 18 deletions
|
|
@ -3,17 +3,22 @@ import json
|
|||
import os
|
||||
from discord.utils import oauth_url
|
||||
|
||||
from bot.embeds import help_footer_embed
|
||||
from pluralkit.bot import help
|
||||
from pluralkit.bot.commands import *
|
||||
|
||||
|
||||
async def help_root(ctx: CommandContext):
|
||||
if ctx.match("commands"):
|
||||
await ctx.reply(help.all_commands)
|
||||
await ctx.reply(help.all_commands, embed=help_footer_embed())
|
||||
elif ctx.match("proxy"):
|
||||
await ctx.reply(help.proxy_guide)
|
||||
await ctx.reply(help.proxy_guide, embed=help_footer_embed())
|
||||
elif ctx.match("system"):
|
||||
await ctx.reply(help.system_commands, embed=help_footer_embed())
|
||||
elif ctx.match("member"):
|
||||
await ctx.reply(help.system_commands, embed=help_footer_embed())
|
||||
else:
|
||||
await ctx.reply(help.root)
|
||||
await ctx.reply(help.root, embed=help_footer_embed())
|
||||
|
||||
|
||||
async def invite_link(ctx: CommandContext):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue