diff options
author | AnInternetTroll <lucafulger@gmail.com> | 2020-08-16 20:21:04 +0000 |
---|---|---|
committer | AnInternetTroll <lucafulger@gmail.com> | 2020-08-16 20:21:04 +0000 |
commit | 5bae47a6c31afd9ac2fef49093d0c599912c9384 (patch) | |
tree | 361e18696d62788e70b9aecf6b0432278ad54da2 /cogs/utils.py | |
parent | 6b3251d28d7c4275b2a71776fb84880022d6f078 (diff) | |
download | steve-bot-5bae47a6c31afd9ac2fef49093d0c599912c9384.tar steve-bot-5bae47a6c31afd9ac2fef49093d0c599912c9384.tar.gz steve-bot-5bae47a6c31afd9ac2fef49093d0c599912c9384.tar.bz2 steve-bot-5bae47a6c31afd9ac2fef49093d0c599912c9384.tar.lz steve-bot-5bae47a6c31afd9ac2fef49093d0c599912c9384.tar.xz steve-bot-5bae47a6c31afd9ac2fef49093d0c599912c9384.tar.zst steve-bot-5bae47a6c31afd9ac2fef49093d0c599912c9384.zip |
Better formatting of stared message
Diffstat (limited to 'cogs/utils.py')
-rwxr-xr-x | cogs/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index 7e79ce3..164c55c 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -163,7 +163,7 @@ class Utils(commands.Cog): if reaction.emoji == "⭐" and not reaction.message.id in self.pins and reaction.count >= 3: self.pins.append(reaction.message.id) - embed = discord.Embed(title=f"**{reaction.message.clean_content}**", colour=discord.Colour(0xb92c36), url=reaction.message.jump_url, timestamp=reaction.message.created_at) + embed = discord.Embed(title="**New stared message**", description=reaction.message.content, colour=discord.Colour(0xb92c36), url=reaction.message.jump_url, timestamp=reaction.message.created_at) for attachement in reaction.message.attachments: if attachement.height: |