Add support for voice channel parties #33

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

View File

@ -285,7 +285,6 @@ 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)

View File

@ -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.replace('#', '0x'), 16)
self.colour = colour