diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index caed3c7..77aaaf1 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -279,9 +279,10 @@ class Pterodactyl(commands.Cog): @pterodactyl_config.command(name = "api") async def pterodactyl_config_api(self, ctx: commands.Context, endpoint: str) -> None: - """Set the API endpoint to use for the user retrival API. + """Set the API endpoint for retrieving user avatars. - This is only used for retrieving user avatars for webhook messages.""" + This is only used for retrieving user avatars for webhook messages. + See [PlayerDB](https://playerdb.co/) for valid endpoints. Usually, you should leave this as default.""" await config.api_endpoint.set(endpoint) await ctx.send(f"API endpoint set to {endpoint}")