diff --git a/CHANGELOG.md b/CHANGELOG.md index b763c9c413..cb78469987 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,12 +21,14 @@ These changes are available on the `master` branch, but have not yet been releas ([#1936](https://github.com/Pycord-Development/pycord/pull/1936)) - Added support for one-time event listeners in `@client.listen()`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957)) -- Added `current_page` argument to Paginator.update() +- Added `current_page` argument to Paginator.update(). ([#1983](https://github.com/Pycord-Development/pycord/pull/1983) +- Added new `application_auto_moderation_rule_create_badge` to `ApplicationFlags`. + ([#1992](https://github.com/Pycord-Development/pycord/pull/1992)) ### Removed -- Removed `@client.once()` in favour of `@client.listen(once=True)` +- Removed `@client.once()` in favour of `@client.listen(once=True)`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957)) ## [2.4.1] - 2023-03-20 diff --git a/discord/flags.py b/discord/flags.py index c04020a28e..ae5d74da82 100644 --- a/discord/flags.py +++ b/discord/flags.py @@ -1338,6 +1338,14 @@ def group_dm_create(self): """:class:`bool`: Returns ``True`` if the application can create group DMs.""" return 1 << 5 + @flag_value + def application_auto_moderation_rule_create_badge(self): + """:class:`bool`: Returns ``True`` if the application uses the Auto Moderation API. + + .. versionadded:: 2.5 + """ + return 1 << 6 + @flag_value def rpc_has_connected(self): """:class:`bool`: Returns ``True`` if the application has connected to RPC."""