|
@ -649,8 +649,11 @@ class Member(discord.abc.Messageable, _UserTag): |
|
|
channel permission overwrites. For 100% accurate permission |
|
|
channel permission overwrites. For 100% accurate permission |
|
|
calculation, please use :meth:`abc.GuildChannel.permissions_for`. |
|
|
calculation, please use :meth:`abc.GuildChannel.permissions_for`. |
|
|
|
|
|
|
|
|
This does take into consideration guild ownership and the |
|
|
This does take into consideration guild ownership, the |
|
|
administrator implication. |
|
|
administrator implication, and whether the member is timed out. |
|
|
|
|
|
|
|
|
|
|
|
.. versionchanged:: 2.0 |
|
|
|
|
|
Member timeouts are taken into consideration. |
|
|
""" |
|
|
""" |
|
|
|
|
|
|
|
|
if self.guild.owner_id == self.id: |
|
|
if self.guild.owner_id == self.id: |
|
@ -663,6 +666,9 @@ class Member(discord.abc.Messageable, _UserTag): |
|
|
if base.administrator: |
|
|
if base.administrator: |
|
|
return Permissions.all() |
|
|
return Permissions.all() |
|
|
|
|
|
|
|
|
|
|
|
if self.is_timed_out(): |
|
|
|
|
|
base.value &= Permissions._timeout_mask() |
|
|
|
|
|
|
|
|
return base |
|
|
return base |
|
|
|
|
|
|
|
|
@property |
|
|
@property |
|
|