diff --git a/CHANGELOG.md b/CHANGELOG.md index 9210527012..ced04899ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -232,6 +232,9 @@ These changes are available on the `master` branch, but have not yet been releas ([#2337](https://github.com/Pycord-Development/pycord/pull/2337)) - Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343)) +- Fixed `AttributeError` due to `entitlements` not being included in + `Interaction.__slots__`. + ([#2345](https://github.com/Pycord-Development/pycord/pull/2345)) ## [2.4.1] - 2023-03-20 diff --git a/discord/interactions.py b/discord/interactions.py index 6443af1c04..0e254d514a 100644 --- a/discord/interactions.py +++ b/discord/interactions.py @@ -148,6 +148,7 @@ class Interaction: "token", "version", "custom_id", + "entitlements", "_channel_data", "_message_data", "_guild_data",