even more extreme

This commit is contained in:
nexy7574 2023-09-21 20:08:27 +01:00
parent 3af2682e6a
commit 52452638c1

View file

@ -72,8 +72,13 @@ class Extremism(commands.Cog):
self.bot = bot self.bot = bot
@commands.slash_command(name="radicalise") @commands.slash_command(name="radicalise")
async def radicalise(self, ctx, image: discord.Attachment): async def radicalise(self, ctx, image: discord.Attachment = None, user: discord.User = None):
"""Makes an image extremely radical.""" """Makes an image extremely radical."""
if image is None:
if user is None:
user = ctx.author
image = user.avatar.with_format("png")
else:
if not image.content_type.startswith("image/"): if not image.content_type.startswith("image/"):
await ctx.send("That's not an image!") await ctx.send("That's not an image!")
return return