Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ These changes are available on the `master` branch, but have not yet been releas
([#3231](https://github.com/Pycord-Development/pycord/pull/3231))
- Allow `ForumTag` to be created without an emoji.
([#3245](https://github.com/Pycord-Development/pycord/pull/3245))
- Fixed `AttributeError` when accessing the `system` attribute on copied `User`s.
([#3247](https://github.com/Pycord-Development/pycord/pull/3247))
Comment thread
Soheab marked this conversation as resolved.
- Fix a bug where `TextChannel.archived_threads` would ignore any limit parameter
smaller than 50 and use 50 instead.
([#3266](https://github.com/Pycord-Development/pycord/pull/3266))
Expand Down
1 change: 1 addition & 0 deletions discord/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ def _copy(cls: type[BU], user: BU) -> BU:
self._public_flags = user._public_flags
self.primary_guild = user.primary_guild
self._collectibles = user._collectibles
self.system = user.system

return self

Expand Down
Loading