From 291237bac9e46bda4a715177b795112fcec6371f Mon Sep 17 00:00:00 2001 From: iDutchy Date: Thu, 1 Oct 2020 22:11:25 +0000 Subject: [PATCH] hmm --- discord/client.py | 8 ++++---- discord/embeds.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord/client.py b/discord/client.py index 351f36ba..7c1899dc 100644 --- a/discord/client.py +++ b/discord/client.py @@ -286,15 +286,15 @@ class Client: @embed_color.setter def embed_color(self, value): if isinstance(value, (Color, Colour)): - self._embed_color = str(hex(value)) - os.environ['DEFAULT_EMBED_COLOR'] = str(hex(value)) + self._embed_color = str(int(value)) + os.environ['DEFAULT_EMBED_COLOR'] = str(int(value)) else: try: HEX = re.compile(r'^(#)[A-Fa-f0-9]{6}$') col = Color(value) if HEX.match(str(col)): - self._embed_color = str(hex(col)) - os.environ['DEFAULT_EMBED_COLOR'] = str(hex(col)) + self._embed_color = str(int(col)) + os.environ['DEFAULT_EMBED_COLOR'] = str(int(col)) except: raise TypeError('embed_color must be an instance of discord.Colour or a valid 0x****** hex value.') diff --git a/discord/embeds.py b/discord/embeds.py index ac502934..b37e808d 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -112,7 +112,7 @@ class Embed: default_colour = kwargs.get('color', EmptyEmbed) colour = os.getenv("DEFAULT_EMBED_COLOR", default=default_colour) if isinstance(colour, str): - colour = int(colour, 16) + colour = int(colour) self.colour = colour