fix: new message versioning starting after session owner message (#2942)

* fix

We are starting the message versioning after the more recent session owner message.

* update

adding change log entry

* update

adding PR number to changelog entry.
This commit is contained in:
Noel Stephens 2024-06-03 15:02:09 -05:00 коммит произвёл GitHub
Родитель 3f59dff4e4
Коммит 98d4bbcc92
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -8,6 +8,10 @@ Additional documentation and release notes are available at [Multiplayer Documen
## [Unreleased]
### Fixed
- Fixed issue where SessionOwner message was being treated as a new entry for the new message indexing when it should have been ordinally sorted with the legacy message indices. (#2942)
## [2.0.0-exp.4] - 2024-05-31
### Added

Просмотреть файл

@ -44,9 +44,9 @@ namespace Unity.Netcode
SceneEvent = 17,
ServerLog = 18,
ServerRpc = 19,
TimeSync = 20,
Unnamed = 21,
SessionOwner = 22
SessionOwner = 20,
TimeSync = 21,
Unnamed = 22,
}