diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 1ce15c5c10..8b1c0b9542 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -47,6 +47,7 @@ - Fix: [#11695] Mechanics walk to tile 0, 0 at entrance only stations when trying to fix them. - Fix: [#11804] Some RCT1 fences are imported at the wrong height. - Fix: [#11953] Incorrect banner text shade colour on wall text. +- Fix: [#11968] Maze height is higher than it should be. - Fix: [#12062] Inconsistent lift hill sprites on Flying Coaster while inverted (original bug). - Fix: [#12068] Incorrect Entrance/Exit location on track design preview. Incorrect track design previews with track that contain diagonal track elements. - Fix: [#12071] Crash in Guest List when a guest dies. diff --git a/src/openrct2/actions/MazePlaceTrackAction.hpp b/src/openrct2/actions/MazePlaceTrackAction.hpp index 91aad601b3..67e5a11405 100644 --- a/src/openrct2/actions/MazePlaceTrackAction.hpp +++ b/src/openrct2/actions/MazePlaceTrackAction.hpp @@ -180,7 +180,7 @@ public: auto tileElement = tile_element_insert(_loc, 0b1111); assert(tileElement != nullptr); - tileElement->SetClearanceZ(clearanceHeight + MAZE_CLEARANCE_HEIGHT); + tileElement->SetClearanceZ(clearanceHeight); tileElement->SetType(TILE_ELEMENT_TYPE_TRACK); tileElement->AsTrack()->SetTrackType(TRACK_ELEM_MAZE); diff --git a/src/openrct2/network/NetworkBase.cpp b/src/openrct2/network/NetworkBase.cpp index 5f6889a955..4bbf4733e2 100644 --- a/src/openrct2/network/NetworkBase.cpp +++ b/src/openrct2/network/NetworkBase.cpp @@ -33,7 +33,7 @@ // This string specifies which version of network stream current build uses. // It is used for making sure only compatible builds get connected, even within // single OpenRCT2 version. -#define NETWORK_STREAM_VERSION "26" +#define NETWORK_STREAM_VERSION "27" #define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION static Peep* _pickup_peep = nullptr;