diff options
| author | Rapptz <[email protected]> | 2020-01-14 20:37:48 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2020-01-14 20:37:48 -0500 |
| commit | a841efa0874c10dc4704c88cea25f73506db4054 (patch) | |
| tree | b72d6059f954c0330d3303c38d4d86129d87e30b /discord/enums.py | |
| parent | [commands] Force the predicate attribute in checks to be a coroutine (diff) | |
| download | discord.py-a841efa0874c10dc4704c88cea25f73506db4054.tar.xz discord.py-a841efa0874c10dc4704c88cea25f73506db4054.zip | |
Add support for custom activities
It's been long enough.
Fixes #2400
Diffstat (limited to 'discord/enums.py')
| -rw-r--r-- | discord/enums.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/discord/enums.py b/discord/enums.py index ddc4e48c..b4886f28 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -406,6 +406,7 @@ class ActivityType(Enum): streaming = 1 listening = 2 watching = 3 + custom = 4 def __int__(self): return self.value |