From c8b851038e1dda2f25d3ba809444657149da33a4 Mon Sep 17 00:00:00 2001 From: Helixu Date: Fri, 11 Mar 2022 16:05:04 +0000 Subject: [PATCH] fix jail (or break it) --- bot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bot.py b/bot.py index cf969ac..947577d 100644 --- a/bot.py +++ b/bot.py @@ -233,13 +233,13 @@ Are you sure that the image URL you sent is correct? Image attachments currently @bot.command(brief='where the wetters go') -async def jail(ctx, url = None): +async def jail(ctx, member: discord.Member=None): await ctx.message.delete() await ctx.send(f"*Command executed by {ctx.author.name}#{ctx.author.discriminator}*") await ctx.trigger_typing() async with aiohttp.ClientSession() as session: async with session.get( - f'https://some-random-api.ml/canvas/jail?avatar={url}' + f'https://some-random-api.ml/canvas/jail?avatar={member.avatar_url_as(format="png", size=1024)}' ) as af: if 300 > af.status >= 200 : fp = io.BytesIO(await af.read()) @@ -252,7 +252,7 @@ async def jail(ctx, url = None): await ctx.send(embed=embed, file=file) else: await ctx.send("""An unexpected error happened, Steve.. I told you this already! -Are you sure that the image URL you sent is correct? Image attachments currently do not work!""") +Are you sure that the user's name is correct?""") @bot.command(brief='similar to esmBot blurple, but with 104% more fox') async def blurple(ctx, url = None):