From 7f471a0439bad13a5024cd776bba7e3103804ade Mon Sep 17 00:00:00 2001 From: Moksej <58531286+TheMoksej@users.noreply.github.com> Date: Sun, 22 Nov 2020 22:17:17 +0100 Subject: [PATCH] footer --- cogs/dbl.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cogs/dbl.py b/cogs/dbl.py index aefa729..bb61def 100644 --- a/cogs/dbl.py +++ b/cogs/dbl.py @@ -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() @@ -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()