diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 9189306379..8c27e7b66d 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -113,6 +113,7 @@ - Fix: [#7125] No entry signs not correctly handled in pathfinding. - Fix: [#7223] Vehicle mass not correctly recalculated when using remove all guests cheat. - Fix: [#7229] Exploding guests cheat causes rides to get stuck and freezes game. +- Fix: [#7295] peep_should_go_on_ride_again() checked balloon colour instead of toilet need. - Fix: Infinite loop when removing scenery elements with >127 base height. - Fix: Ghosting of transparent map elements when the viewport is moved in OpenGL mode. - Fix: Clear IME buffer after committing composed text. diff --git a/src/openrct2/network/Network.cpp b/src/openrct2/network/Network.cpp index d44500c153..3086ceb7a0 100644 --- a/src/openrct2/network/Network.cpp +++ b/src/openrct2/network/Network.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 "42" +#define NETWORK_STREAM_VERSION "43" #define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION static rct_peep* _pickup_peep = nullptr; diff --git a/src/openrct2/peep/Peep.cpp b/src/openrct2/peep/Peep.cpp index 9b5a9bb617..be6f808826 100644 --- a/src/openrct2/peep/Peep.cpp +++ b/src/openrct2/peep/Peep.cpp @@ -11975,7 +11975,7 @@ static bool peep_should_go_on_ride_again(rct_peep * peep, Ride * ride) return false; if (peep->thirst < 20) return false; - if (peep->balloon_colour > 170) + if (peep->toilet > 170) return false; uint8 r = (peep_rand() & 0xFF);