diff options
| author | SnowyLuma <[email protected]> | 2018-10-25 15:11:02 +0200 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-11-24 22:36:52 -0500 |
| commit | e89e7dfe93d758ef522d6db917f08cc4c868ba9a (patch) | |
| tree | dab2ef35b7a10c1da4e586b14ed68f3aa357f1d9 /discord/shard.py | |
| parent | add support for Bug Hunter and Early Supporter flags (diff) | |
| download | discord.py-e89e7dfe93d758ef522d6db917f08cc4c868ba9a.tar.xz discord.py-e89e7dfe93d758ef522d6db917f08cc4c868ba9a.zip | |
Add support for multiple activities
Diffstat (limited to 'discord/shard.py')
| -rw-r--r-- | discord/shard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/shard.py b/discord/shard.py index 6fd4e3cb..0eb5c695 100644 --- a/discord/shard.py +++ b/discord/shard.py @@ -353,5 +353,5 @@ class AutoShardedClient(Client): if me is None: continue - me.activity = activity + me.activities = (activity,) me.status = status_enum |