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")