diff options
| -rw-r--r-- | bot/seasons/evergreen/bookmark.py | 6 | 
1 files changed, 2 insertions, 4 deletions
| diff --git a/bot/seasons/evergreen/bookmark.py b/bot/seasons/evergreen/bookmark.py index 9962186f..0197f9f4 100644 --- a/bot/seasons/evergreen/bookmark.py +++ b/bot/seasons/evergreen/bookmark.py @@ -28,11 +28,9 @@ class Bookmark(commands.Cog):          embed = discord.Embed(
              title=title,
              colour=Colours.soft_green,
 -            description=(
 -                f"{target_message.content}\n\n"
 -                f"[Visit original message]({target_message.jump_url})"
 -            )
 +            description=target_message.content
          )
 +        embed.add_field(name="Wanna give it a visit?", value=f"[Visit original message]({target_message.jump_url})")
          embed.set_author(name=target_message.author, icon_url=target_message.author.avatar_url)
          embed.set_thumbnail(url=bookmark_icon_url)
 | 
