mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-04-20 16:00:29 +00:00
Fix some lingering attribute setting issues.
This commit is contained in:
parent
c7396dc8ac
commit
26bb6c6ddc
@ -232,6 +232,11 @@ class Member(discord.abc.Messageable, _BaseUser):
|
||||
""":class:`Status`: The member's overall status. If the value is unknown, then it will be a :class:`str` instead."""
|
||||
return try_enum(Status, self._client_status[None])
|
||||
|
||||
@status.setter
|
||||
def status(self, value):
|
||||
# internal use only
|
||||
self._client_status[None] = str(value)
|
||||
|
||||
@property
|
||||
def mobile_status(self):
|
||||
""":class:`Status`: The member's status on a mobile device, if applicable."""
|
||||
|
Loading…
x
Reference in New Issue
Block a user