1
Fork 0
mirror of https://github.com/wlinator/luminara.git synced 2024-10-02 18:03:12 +00:00

Merge pull request #24 from wlinator/moderation

chore: Remove outdated guide URLs and help messages
This commit is contained in:
wlinator 2024-08-06 06:31:06 -04:00
commit 721675e772
3 changed files with 1 additions and 5 deletions

View file

@ -37,7 +37,6 @@ class Constants:
MARIADB_DATABASE: Optional[str] = os.environ.get("MARIADB_DATABASE", None)
# config
CONFIG_GUIDE_URL = "https://wiki.wlinator.org/serverconfig"
ALLOWED_IMAGE_EXTENSIONS = (".jpg", ".png")
# emotes

View file

@ -24,7 +24,6 @@ class Config(commands.Cog):
name="xprewards",
aliases=["xpr"],
description="Show your server's XP rewards list.",
help="Read [the guide](https://wiki.wlinator.org/xprewards) before editing.",
guild_only="True",
)
@commands.guild_only()
@ -36,7 +35,6 @@ class Config(commands.Cog):
name="addxpreward",
aliases=["axpr"],
description="Add a Lumi XP reward.",
help="Add a Lumi XP reward. Read [the guide](https://wiki.wlinator.org/xprewards) before editing.",
guild_only="True",
)
@commands.guild_only()
@ -54,7 +52,6 @@ class Config(commands.Cog):
name="removexpreward",
aliases=["rxpr"],
description="Remove a Lumi XP reward.",
help="Remove a Lumi XP reward. Read [the guide](https://wiki.wlinator.org/xprewards) before editing.",
guild_only="True",
)
@commands.guild_only()

View file

@ -11,7 +11,7 @@ async def show(ctx):
embed = discord.Embed(
color=discord.Color.embed_background(),
description="Read [the guide](https://wiki.wlinator.org/xprewards) before editing.\n",
description="",
)
icon = ctx.guild.icon if ctx.guild.icon else art["logo"]["opaque"]