Skip to content

Commit

Permalink
Remove codeblocks around IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ast3risk-ops committed Jan 11, 2025
1 parent 99718ac commit cd6264d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,13 +209,13 @@ async def bookmark_tag(ctx, message: discord.Message):
)
embed.add_field(
name="<:mdicodetags:1311506780332752977> ID",
value=f"`{message.id}`",
value=f"{message.id}",
inline=True,
)
if message.guild:
embed.add_field(
name="<:mdichesscastle:1314056466516283413> Guild",
value=f"`{message.guild.id}`",
value=f"{message.guild.id}",
inline=True,
)
else:
Expand Down
4 changes: 2 additions & 2 deletions main_emoji.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,9 @@ async def bookmark_tag(ctx, message: discord.Message):
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)
embed.add_field(name="🪪 ID", value=f"{message.id}", inline=True)
if message.guild:
embed.add_field(name="🏰 Guild", value=f"`{message.guild.id}`", inline=True)
embed.add_field(name="🏰 Guild", value=f"{message.guild.id}", inline=True)
else:
embed.add_field(name="🏰 Guild", value=f"DM", inline=True)
if message.embeds:
Expand Down

0 comments on commit cd6264d

Please sign in to comment.