From 4fe8f4fd3896022e49c68c8c61f11aa78d3ef381 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 28 Feb 2023 15:17:18 -0500 Subject: [PATCH] fixed error in the embed's color --- galaxy/galaxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index a93dfd7..b07af6c 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -22,7 +22,7 @@ class Galaxy(commands.Cog): colorcodelink = f"https://www.color-hex.com/color/{color}" timestamp_create = int(datetime.timestamp(member.created_at)) timestamp_join = int(datetime.timestamp(member.joined_at)) - embed = discord.Embed(title=f"{member.name}#{member.discriminator}", color=color) + embed = discord.Embed(title=f"{member.name}#{member.discriminator}", color=colorint) embed.add_field(name="Joined At", value=f"") embed.add_field(name="Created At", value=f"") embed.add_field(name="Avatar", value=f"[Click Here]({member.avatar_url})")