Add support for voice channel parties #33

Closed
wasi-master wants to merge 277 commits from master into 2.0
128 changed files with 12214 additions and 18795 deletions
Showing only changes of commit 1c228f9548 - Show all commits

View File

@ -289,7 +289,7 @@ class Client:
if isinstance(value, (Color, Colour)):
self._embed_color = hex(value)
os.environ['DEFAULT_EMBED_COLOR'] = str(hex(value))
elif HEX.match(str(value))):
elif HEX.match(str(value)):
self._embed_color = value
os.environ['DEFAULT_EMBED_COLOR'] = str(value)
else: