From 3faa862f466aa97ce516ea3bf8ce63178b30203a Mon Sep 17 00:00:00 2001 From: Faster Speeding Date: Tue, 15 Sep 2020 02:07:26 +0100 Subject: [PATCH] Add Competing activity type For some reason discord hasn't documented the fields this introduces to the activity object so this may end up being a preliminary commit. --- hikari/presences.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hikari/presences.py b/hikari/presences.py index 0f48c9067d..5090ddcfce 100644 --- a/hikari/presences.py +++ b/hikari/presences.py @@ -85,6 +85,9 @@ class ActivityType(enum.IntEnum): Bots currently do not support setting custom statuses. """ + COMPETING = 5 + """Shows up as `Competing in `""" + def __str__(self) -> str: return self.name