From 637e2b9ac5c26140d60e1c64ab5ad5455dbc85ca Mon Sep 17 00:00:00 2001 From: tema5002 Date: Sun, 17 May 2026 16:27:16 +0300 Subject: [PATCH] change embed color --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 541de33..81c9a1a 100755 --- a/main.py +++ b/main.py @@ -99,7 +99,8 @@ class Database: m = self.__tracked_messages[message_id] return discord.Embed( title=f"message with {len(m.reactions)} reactions", - description="\n".join(f"{x.emoji}" + (f" ({x.emoji.removesuffix('>').split(':')[2]})" if ':' in x.emoji else "") + f" - <@&{x.role_id}>" for x in m.reactions) + description="\n".join(f"{x.emoji}" + (f" ({x.emoji.removesuffix('>').split(':')[2]})" if ':' in x.emoji else "") + f" - <@&{x.role_id}>" for x in m.reactions), + color=discord.Color(0xa2d2df) ) def format_message(self, message_id: int) -> str: