From b88bdaf4c0c7562ccacc039886909704c8c1b49f Mon Sep 17 00:00:00 2001 From: "I. Ahmad" <54180221+nerdguyahmad@users.noreply.github.com> Date: Wed, 6 Jul 2022 02:56:58 -0700 Subject: [PATCH] Add Intents.auto_moderation --- discord/flags.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/discord/flags.py b/discord/flags.py index dbf88e650..bf5b46589 100644 --- a/discord/flags.py +++ b/discord/flags.py @@ -1105,6 +1105,24 @@ class Intents(BaseFlags): """ return 1 << 16 + @flag_value + def auto_moderation(self): + """:class:`bool`: Whether auto moderation related events are enabled. + + This is a shortcut to set or get both :attr:`auto_moderation_configuration` + and :attr:`auto_moderation_execution`. + + This corresponds to the following events: + + - :func:`on_automod_rule_create` + - :func:`on_automod_rule_update` + - :func:`on_automod_rule_delete` + - :func:`on_automod_action` + + .. versionadded:: 2.0 + """ + return (1 << 20) | (1 << 21) + @flag_value def auto_moderation_configuration(self): """:class:`bool`: Whether auto moderation configuration related events are enabled.