fix jail (or break it)

This commit is contained in:
Helixu 2022-03-11 16:05:04 +00:00
parent 3b3f34d96d
commit c8b851038e

6
bot.py
View file

@ -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') @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.message.delete()
await ctx.send(f"*Command executed by {ctx.author.name}#{ctx.author.discriminator}*") await ctx.send(f"*Command executed by {ctx.author.name}#{ctx.author.discriminator}*")
await ctx.trigger_typing() await ctx.trigger_typing()
async with aiohttp.ClientSession() as session: async with aiohttp.ClientSession() as session:
async with session.get( 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: ) as af:
if 300 > af.status >= 200 : if 300 > af.status >= 200 :
fp = io.BytesIO(await af.read()) fp = io.BytesIO(await af.read())
@ -252,7 +252,7 @@ async def jail(ctx, url = None):
await ctx.send(embed=embed, file=file) await ctx.send(embed=embed, file=file)
else: else:
await ctx.send("""An unexpected error happened, Steve.. I told you this already! 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') @bot.command(brief='similar to esmBot blurple, but with 104% more fox')
async def blurple(ctx, url = None): async def blurple(ctx, url = None):