diff options
| author | Rapptz <[email protected]> | 2020-04-04 03:17:31 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2020-04-04 03:17:31 -0400 |
| commit | 6c764465c07afbd4bede7afc1de5b6451a17ea95 (patch) | |
| tree | f38960ff414073f6926f2622b71e81727e815026 /discord/client.py | |
| parent | Add position argument to Guild.create_category (diff) | |
| download | discord.py-6c764465c07afbd4bede7afc1de5b6451a17ea95.tar.xz discord.py-6c764465c07afbd4bede7afc1de5b6451a17ea95.zip | |
Fix regression with Member.activities not clearing
Diffstat (limited to 'discord/client.py')
| -rw-r--r-- | discord/client.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/discord/client.py b/discord/client.py index 3b68f39b..757886ef 100644 --- a/discord/client.py +++ b/discord/client.py @@ -949,6 +949,9 @@ class Client: if activity is not None: me.activities = (activity,) + else: + me.activities = () + me.status = status_enum # Guild stuff |