forked from cswimr/SeaCogs
fix(pterodactyl): fixed an issue with colors in generate_join_leave_embed
This commit is contained in:
parent
f91cd82d1b
commit
bd7aa54efe
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
async def generate_join_leave_embed(username: str, join: bool) -> discord.Embed:
|
||||||
embed = 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()
|
embed.description = await config.join_msg() if join else await config.leave_msg()
|
||||||
info = await get_info(username)
|
info = await get_info(username)
|
||||||
if info:
|
if info:
|
||||||
|
|
Loading…
Reference in a new issue