change embed color

This commit is contained in:
tema5002
2026-05-17 16:27:16 +03:00
parent 90c7b90b8c
commit 637e2b9ac5

View File

@@ -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: