diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index 889ec80..d644331 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -87,7 +87,10 @@ class Pterodactyl(commands.Cog): @pterodactyl_config.command(name = "url") async def pterodactyl_config_base_url(self, ctx: commands.Context, *, base_url: str = None) -> None: - """Set the base URL of your Pterodactyl Panel. Please include the protocol (http/https).""" + """Set the base URL of your Pterodactyl Panel. + + Please include the protocol (http/https). + Example: `https://panel.example.com`""" if base_url is None: base_url = await config.base_url() return await ctx.send(f"Base URL is currently set to {base_url}")