Browse Source

Add support for new pink default avatars

pull/9446/head
Rapptz 2 years ago
parent
commit
eedd7e3014
  1. 10
      discord/colour.py
  2. 1
      discord/enums.py
  3. 2
      discord/user.py
  4. 6
      docs/api.rst

10
discord/colour.py

@ -509,5 +509,15 @@ class Colour:
"""
return cls(0xEEEFF1)
@classmethod
def pink(cls) -> Self:
"""A factory method that returns a :class:`Colour` with a value of ``0xEB459F``.
.. colour:: #EB459F
.. versionadded:: 2.3
"""
return cls(0xEB459F)
Color = Colour

1
discord/enums.py

@ -295,6 +295,7 @@ class DefaultAvatar(Enum):
green = 2
orange = 3
red = 4
pink = 5
def __str__(self) -> str:
return self.name

2
discord/user.py

@ -173,7 +173,7 @@ class BaseUser(_UserTag):
if self.discriminator == '0':
avatar_id = (self.id >> 22) % len(DefaultAvatar)
else:
avatar_id = int(self.discriminator) % len(DefaultAvatar)
avatar_id = int(self.discriminator) % 5
return Asset._from_default_avatar(self._state, avatar_id)

6
docs/api.rst

@ -2896,6 +2896,12 @@ of :class:`enum.Enum`.
Represents the default avatar with the color red.
See also :attr:`Colour.red`
.. attribute:: pink
Represents the default avatar with the color pink.
See also :attr:`Colour.pink`
.. versionadded:: 2.3
.. class:: StickerType

Loading…
Cancel
Save