forked from blizzthewolf/SeaCogs
fix(art): don't specify the file name so the file embeds properly
This commit is contained in:
parent
1ae7dbe44c
commit
1611bfa180
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ class Art(commands.Cog):
|
|||
if art_submission_channel is None:
|
||||
await interaction.followup.send("Art submission channel not set. Report this error to the server administrators.", ephemeral=True)
|
||||
return
|
||||
await art_submission_channel.send(f"Art submission from {interaction.user.mention} ({interaction.user.id}):", file=await art.to_file(filename=str(interaction.user.id)))
|
||||
await art_submission_channel.send(f"Art submission from {interaction.user.mention} ({interaction.user.id}):", file=await art.to_file())
|
||||
await interaction.followup.send("Art submitted.", ephemeral=True)
|
||||
|
||||
@commands.group()
|
||||
|
|
Loading…
Reference in a new issue