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."))