From ef20264b1c42a6719d13b5a47e62b73652377387 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Fri, 29 Apr 2022 10:50:22 -0400 Subject: [PATCH] Allow creating an Intent through a passed integer value --- discord/flags.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/flags.py b/discord/flags.py index ece2e6c40..0412a6fa7 100644 --- a/discord/flags.py +++ b/discord/flags.py @@ -505,8 +505,8 @@ class Intents(BaseFlags): __slots__ = () - def __init__(self, **kwargs: bool) -> None: - self.value: int = self.DEFAULT_VALUE + def __init__(self, value: int = 0, **kwargs: bool) -> None: + self.value: int = value for key, value in kwargs.items(): if key not in self.VALID_FLAGS: raise TypeError(f'{key!r} is not a valid flag name.')