1
Fork 0
mirror of https://github.com/wlinator/luminara.git synced 2024-10-02 22:23:13 +00:00

Add wiki cmdlist to help output

This commit is contained in:
wlinator 2024-04-12 13:42:40 +02:00
parent c04b82b92f
commit a5e2af5403

View file

@ -4,6 +4,7 @@ from dotenv import load_dotenv
from config.parser import JsonCache from config.parser import JsonCache
from lib.embeds.error import HelpErrors from lib.embeds.error import HelpErrors
import lib.checks
art = JsonCache.read_json("art") art = JsonCache.read_json("art")
load_dotenv('.env') load_dotenv('.env')
@ -28,8 +29,11 @@ class RacuHelp(commands.HelpCommand):
embed = discord.Embed(color=discord.Color.blurple()) embed = discord.Embed(color=discord.Color.blurple())
embed.set_author(name="Help Command", icon_url=art["logo"]["transparent"]) embed.set_author(name="Help Command", icon_url=art["logo"]["transparent"])
embed.description = ("Still need help? See [the wiki](https://wiki.wlinator.org/)!\n" embed.description = (
"Bug reports & feature requests go [here](https://gitlab.com/wlinator/Racu/-/issues/new).") "Still need help? See [the wiki](https://wiki.wlinator.org/)!\n"
"Bug reports & feature requests go [here](https://gitlab.com/wlinator/Racu/-/issues/new).\n\n"
"Full list of commands: https://wiki.wlinator.org/cmdlist"
)
for cog, racu_commands in mapping.items(): for cog, racu_commands in mapping.items():