Skip to content

Commit

Permalink
change author display
Browse files Browse the repository at this point in the history
  • Loading branch information
Ast3risk-ops committed Dec 24, 2024
1 parent ac48ec6 commit ee7e3ee
Show file tree
Hide file tree
Showing 4 changed files with 130 additions and 90 deletions.
209 changes: 124 additions & 85 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ async def bookmark_tag(
answertext.append(answerf)
embed.add_field(name="", value="".join(answertext), inline=False)
embed.add_field(name="\n\n", value=", ".join(reactionlist), inline=False)
embed.add_field(name="<:mdiaccount:1311490376091045989> Author", value=f"<@{message.author.id}>", inline=True)
embed.add_field(name="<:mdiaccount:1311490376091045989> Author", value=f"`{message.author.name}` (<@{message.author.id}>)", inline=True)
embed.add_field(name="<:mdilinkvariant:1311490590747267082> Link", value=f"{message.jump_url}", inline=True)
embed.add_field(name="<:mdicodetags:1311506780332752977> ID", value=f"`{message.id}`", inline=True)
if message.guild:
Expand Down
2 changes: 1 addition & 1 deletion main_emoji.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ async def bookmark_tag(
answertext.append(answerf)
embed.add_field(name="", value="".join(answertext), inline=False)
embed.add_field(name="\n\n", value=", ".join(reactionlist), inline=False)
embed.add_field(name="👤 Author", value=f"<@{message.author.id}>", inline=True)
embed.add_field(name="👤 Author", value=f"`{message.author.name}` (<@{message.author.id}>)", inline=True)
embed.add_field(name="🔗 Link", value=f"{message.jump_url}", inline=True)
embed.add_field(name="🪪 ID", value=f"`{message.id}`", inline=True)
if message.guild:
Expand Down
Loading

0 comments on commit ee7e3ee

Please sign in to comment.