Skip to content

Commit

Permalink
add donate link
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremynoesen committed Jul 7, 2024
1 parent fe1cc37 commit a8711eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ async def slash_generate(inter: discord.Interaction, topic: str) -> None:
final = combined.overlay(music).overlay(sfx, random.randrange(len(combined) - len(sfx)))
with BytesIO() as episode:
final.export(episode, "wav")
await message.edit(embed=discord.Embed(color=0xf5f306).set_footer(text="\n".join(transcript)), attachments=[discord.File(episode, f"{title}.wav")])
await message.edit(content="**[Donate to keep the bot alive!](https://github.com/sponsors/jeremynoesen)**", embed=discord.Embed(color=0xf5f306).set_footer(text="\n".join(transcript)), attachments=[discord.File(episode, f"{title}.wav")])
cooldown[inter.user.id] = time.time()
except:
try:
Expand Down

0 comments on commit a8711eb

Please sign in to comment.