From d3cc44580250c21071019e9759e46d0e3bbf08c8 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 29 Feb 2024 18:53:47 -0500 Subject: [PATCH] feat(pterodactyl): testing allowing custom colors in tellraw --- pterodactyl/pterodactyl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index 40c5a83..fd161ee 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -147,7 +147,7 @@ class Pterodactyl(commands.Cog): self.logger.debug("Chat channel not set. Skipping sending chat message to Discord") def get_tellraw_string(self, username: str, message: str): - return f'tellraw @a ["",{{"text":"{username} (DISCORD): ","color":"blue"}},{{"text":"{message}","color":"white"}}]' + return f'tellraw @a ["",{{"text":"{username} (DISCORD): ","color":"#ff8d84"}},{{"text":"{message}","color":"white"}}]' def get_task(self): return self.bot.loop.create_task(self.establish_websocket_connection(), name="Pterodactyl Websocket Connection")