diff --git a/src/openrct2/network/network.h b/src/openrct2/network/network.h index 7072911b37..de14de2621 100644 --- a/src/openrct2/network/network.h +++ b/src/openrct2/network/network.h @@ -55,7 +55,7 @@ extern "C" { // This define 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 "7" +#define NETWORK_STREAM_VERSION "8" #define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION #ifdef __cplusplus diff --git a/src/openrct2/ride/ride_ratings.c b/src/openrct2/ride/ride_ratings.c index 61492c1de6..d102561c6b 100644 --- a/src/openrct2/ride/ride_ratings.c +++ b/src/openrct2/ride/ride_ratings.c @@ -643,7 +643,7 @@ static void ride_ratings_calculate_value(rct_ride *ride) rct_ride *ride2; sint32 i; FOR_ALL_RIDES(i, ride2) { - if (ride2->type == ride->type) + if (ride2->type == ride->type && ride2->status == RIDE_STATUS_OPEN) otherRidesOfSameType++; } if (otherRidesOfSameType > 1)