This commit is contained in:
iDutchy 2020-10-01 22:05:34 +00:00
parent b13eca9def
commit 397535f1e5
2 changed files with 6 additions and 7 deletions

View File

@ -286,15 +286,15 @@ class Client:
@embed_color.setter
def embed_color(self, value):
if isinstance(value, (Color, Colour)):
self._embed_color = str(value)
os.environ['DEFAULT_EMBED_COLOR'] = str(value)
self._embed_color = str(hex(value))
os.environ['DEFAULT_EMBED_COLOR'] = str(hex(value))
else:
try:
HEX = re.compile(r'^(#)[A-Fa-f0-9]{6}$')
col = str(Color(value))
if HEX.match(col):
self._embed_color = col
os.environ['DEFAULT_EMBED_COLOR'] = str(col)
col = Color(value)
if HEX.match(str(col)):
self._embed_color = str(hex(col))
os.environ['DEFAULT_EMBED_COLOR'] = str(hex(col))
except:
raise TypeError('embed_color must be an instance of discord.Colour or a valid 0x****** hex value.')

View File

@ -112,7 +112,6 @@ class Embed:
default_colour = kwargs.get('color', EmptyEmbed)
colour = os.getenv("DEFAULT_EMBED_COLOR", default=default_colour)
if isinstance(colour, str):
colour = colour.replace('#', '0x')
colour = int(colour, 16)