diff --git a/pterodactyl/websocket.py b/pterodactyl/websocket.py index 11676ab..dd2c608 100644 --- a/pterodactyl/websocket.py +++ b/pterodactyl/websocket.py @@ -198,7 +198,7 @@ async def send_chat_discord(coginstance: Pterodactyl, username: str, message: st async def generate_join_leave_embed(username: str, join: bool) -> discord.Embed: embed = discord.Embed() - embed.color = discord.Color.green if join else discord.Color.red + embed.color = discord.Color.green() if join else discord.Color.red() embed.description = await config.join_msg() if join else await config.leave_msg() info = await get_info(username) if info: