diff --git a/discord/member.py b/discord/member.py index 0353472c8d..5ca999b8eb 100644 --- a/discord/member.py +++ b/discord/member.py @@ -663,9 +663,8 @@ def display_name(self) -> str: def display_avatar(self) -> Asset: """Returns the member's display avatar. - For regular members this is just their avatar, but - if they have a guild specific avatar then that - is returned instead. + If the member has a guild-specific avatar, that is returned. + Otherwise, their user avatar or default avatar is used. .. versionadded:: 2.0 """ @@ -688,9 +687,8 @@ def guild_avatar(self) -> Asset | None: def display_avatar_decoration(self) -> Asset | None: """Returns the member's displayed avatar decoration. - For regular members this is just their avatar decoration, but - if they have a guild specific avatar decoration then that - is returned instead. + If the member has a guild-specific avatar decoration, that is + returned. Otherwise, their user avatar decoration is used. .. versionadded:: 2.8 """ @@ -713,9 +711,8 @@ def guild_avatar_decoration(self) -> Asset | None: def display_banner(self) -> Asset | None: """Returns the member's display banner. - For regular members this is just their banner, but - if they have a guild specific banner then that - is returned instead. + If the member has a guild-specific banner, that is returned. + Otherwise, their user banner is used. .. versionadded:: 2.7 """ diff --git a/discord/user.py b/discord/user.py index 3448092948..b8bd696754 100644 --- a/discord/user.py +++ b/discord/user.py @@ -251,7 +251,8 @@ def default_avatar(self) -> Asset: def display_avatar(self) -> Asset: """Returns the user's display avatar. - For regular users this is just their default avatar or uploaded avatar. + This is the user's uploaded avatar if available, + otherwise their default avatar. .. versionadded:: 2.0 """