From c3b96b7a9e353b0f2d6a6cab409f8934512bd249 Mon Sep 17 00:00:00 2001 From: Karlo Prikratki Date: Sun, 24 Mar 2024 00:21:30 +0100 Subject: [PATCH] Update image formats listed as supported by `set bot avatar` (#6323) Co-authored-by: Jakub Kuczys --- redbot/core/core_commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index 13c3d4c86b7..f1a483e555f 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -2889,11 +2889,11 @@ async def _set_bot_avatar(self, ctx: commands.Context, url: str = None): _( "Failed. Remember that you can edit my avatar " "up to two times a hour. The URL or attachment " - "must be a valid image in either JPG or PNG format." + "must be a valid image in either JPG, PNG, or GIF format." ) ) except ValueError: - await ctx.send(_("JPG / PNG format only.")) + await ctx.send(_("JPG / PNG / GIF format only.")) else: await ctx.send(_("Done."))