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

Replace wiki links

This commit is contained in:
wlinator 2024-04-07 08:43:23 -04:00
parent babbeb6e2b
commit f469ef1dd7
3 changed files with 6 additions and 6 deletions

View file

@ -28,7 +28,7 @@ class Config(commands.Cog):
async def config_command(self, ctx):
"""
Shows information about how Racu is configured in your server.
Config guide: https://gitlab.com/wlinator/Racu/-/wikis/Server-Configuration
Config guide: https://wiki.wlinator.org/serverconfig
"""
await config.cmd(self, ctx)
@ -57,7 +57,7 @@ class Config(commands.Cog):
@commands.has_permissions(manage_roles=True)
async def xp_reward_command_show(self, ctx):
"""
[Read the guide before editing](https://gitlab.com/wlinator/Racu/wikis/Role-Rewards).
[Read the guide before editing](https://wiki.wlinator.org/xprewards).
"""
await xp_reward.show(ctx)
@ -70,7 +70,7 @@ class Config(commands.Cog):
@commands.has_permissions(manage_roles=True)
async def xp_reward_command_add(self, ctx, level: int, role: discord.Role, persistent: bool = False):
"""
[Read the guide before editing](https://gitlab.com/wlinator/Racu/wikis/Role-Rewards).
[Read the guide before editing](https://wiki.wlinator.org/xprewards).
"""
await xp_reward.add_reward(ctx, level, role.id, persistent)
@ -83,7 +83,7 @@ class Config(commands.Cog):
@commands.has_permissions(manage_roles=True)
async def xp_reward_command_remove(self, ctx, level: int):
"""
[Read the guide before editing](https://gitlab.com/wlinator/Racu/wikis/Role-Rewards).
[Read the guide before editing](https://wiki.wlinator.org/xprewards).
"""
await xp_reward.remove_reward(ctx, level)

View file

@ -11,7 +11,7 @@ async def cmd(self, ctx):
embed = discord.Embed(
color=discord.Color.embed_background(),
description=f"Guide: https://gitlab.com/wlinator/Racu/-/wikis/Server-Configuration"
description=f"Guide: https://wiki.wlinator.org/serverconfig"
)
icon = ctx.guild.icon if ctx.guild.icon else "https://i.imgur.com/79XfsbS.png"
embed.set_author(name=f"{ctx.guild.name} config", icon_url=icon)

View file

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