Remove timestamp as default embed footer

This commit is contained in:
Parker M. 2024-11-30 00:22:11 -06:00
parent c0c78d8693
commit 6597856610
Signed by: parker
GPG Key ID: 505ED36FC12B5D5E

View File

@ -297,10 +297,10 @@ def create_embed(
if footer:
embed.set_footer(text=footer)
else:
embed.set_footer(
text=datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S") + " UTC"
)
# else:
# embed.set_footer(
# text=datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S") + " UTC"
# )
if thumbnail:
embed.set_thumbnail(url=thumbnail)