Skip to content
This repository has been archived by the owner on Dec 4, 2022. It is now read-only.

Commit

Permalink
footer
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMoksej authored Nov 22, 2020
1 parent e343bb1 commit 7f471a0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cogs/dbl.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ async def on_dbl_test(self, data):
e.set_author(name=user, icon_url=user.avatar_url)
e.description = f"**{user}** has test voted for me on {datetime.datetime.now().__format__('%c')}"
e.set_thumbnail(url="https://cdn.discordapp.com/attachments/638902095520464908/659611283443941376/upvote.png")
e.set_footer(text=f'User ID: {user.id}')
await c.send(f"A vote test has ran succesfully!", embed=e)

@commands.Cog.listener()
Expand All @@ -55,6 +56,7 @@ async def on_dbl_vote(self, data):
e.set_author(name=user, icon_url=user.avatar_url)
e.description = f"**{user}** has voted for me on {datetime.datetime.now().__format__('%c')}"
e.set_thumbnail(url="https://cdn.discordapp.com/attachments/638902095520464908/659611283443941376/upvote.png")
e.set_footer(text=f'User ID: {user.id}')
await channel.send(embed=e)

@commands.Cog.listener()
Expand Down

0 comments on commit 7f471a0

Please sign in to comment.