From 0b0afa53d6ff9f2de5aa55ba204d20f4e48b3aac Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 1 Mar 2024 23:03:43 -0500 Subject: [PATCH] fix(pterodactyl): docstring change --- pterodactyl/pterodactyl.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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}")