diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 4071a321bc..6c23e24752 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -1,8 +1,8 @@ 0.4.28 (in development) ------------------------------------------------------------------------ - Change: [#25089] Peep actions and animations that cause them to stop moving no longer trigger when they are on a level crossing. -- Fix: [#22779, #25330] Incorrect queue paths in Nevermore Park and Six Flags Holland scenarios (bug in the original scenarios). - Fix: [#25190] Inserting a block brake while a coaster is simulating will cause the simulation to behave strangely. +- Fix: [#22779, #25330] Incorrect queue paths in Nevermore Park and Six Flags Holland scenarios (bug in the original scenarios). - Fix: [#25299] The Mine Train Coaster left large helix draws incorrect sprites at certain angles (original bug). - Fix: [#25328] Spiral Slide in Blackpool Pleasure Beach has its entrance and exit the wrong way round (bug in the original scenario). diff --git a/src/openrct2/network/NetworkBase.cpp b/src/openrct2/network/NetworkBase.cpp index 4b4b963c2d..cad46ba29e 100644 --- a/src/openrct2/network/NetworkBase.cpp +++ b/src/openrct2/network/NetworkBase.cpp @@ -47,7 +47,7 @@ // It is used for making sure only compatible builds get connected, even within // single OpenRCT2 version. -constexpr uint8_t kStreamVersion = 1; +constexpr uint8_t kStreamVersion = 2; const std::string kStreamID = std::string(kOpenRCT2Version) + "-" + std::to_string(kStreamVersion);