@@ 37,4 37,10 @@ class Stat(commands.Cog):
joined_at = time.strptime(str(member.joined_at), '%Y-%m-%d %H:%M:%S.%f')
joined_at = time.strftime('%a, %d %b %Y %H:%M:%S +0000', joined_at)
stat.add_field(name="Joined at:", value=joined_at)
+
+ if ctx.message.author.nick:
+ stat.set_footer(text=f"Request by {ctx.message.author} aka {ctx.message.author.nick} | {ctx.message.author.id}")
+ else:
+ stat.set_footer(text=f"Request by {ctx.message.author} | {ctx.message.author.id}")
+
await ctx.send(embed=stat)