From 1af08744436a9a13185bd1cf6d9f498829c95c92 Mon Sep 17 00:00:00 2001 From: ZeeMaji <42477864+ZeeMaji@users.noreply.github.com> Date: Thu, 25 Sep 2025 08:51:43 +0000 Subject: [PATCH] Revert crooked house & circus default prices to vanilla values --- distribution/changelog.txt | 1 + src/openrct2/network/NetworkBase.cpp | 2 +- src/openrct2/ride/rtd/gentle/Circus.h | 2 +- src/openrct2/ride/rtd/gentle/CrookedHouse.h | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 48c025dfc1..9981d42651 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -5,6 +5,7 @@ - Change: [#25111] Frozen guests no longer finish consuming any food or drink they are carrying. - Change: [#25161] Revert to the ‘fair ride price’ calculation of vanilla RCT2. - Change: [#25228] [Plugin] The available staff costumes array is now ordered alphabetically by name. +- Change: [#25248] Revert Crooked House & Circus default prices to vanilla values. - Removed: [#25225] `sprite exportalldat`, replaced with `sprite exportobject`. - Fix: [#24513] Ride/track designs can now be shifted underground as well. - Fix: [#24682] The scenery window isn't high enough to accommodate all tool buttons when there are multiple rows of groups/tabs. diff --git a/src/openrct2/network/NetworkBase.cpp b/src/openrct2/network/NetworkBase.cpp index 67f02fe507..1551320f38 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 = 6; +constexpr uint8_t kStreamVersion = 7; const std::string kStreamID = std::string(kOpenRCT2Version) + "-" + std::to_string(kStreamVersion); diff --git a/src/openrct2/ride/rtd/gentle/Circus.h b/src/openrct2/ride/rtd/gentle/Circus.h index ca525d3e3b..f02c0b40ce 100644 --- a/src/openrct2/ride/rtd/gentle/Circus.h +++ b/src/openrct2/ride/rtd/gentle/Circus.h @@ -43,7 +43,7 @@ constexpr RideTypeDescriptor CircusRTD = .RatingsMultipliers = { 20, 10, 0 }, .UpkeepCosts = { 50, 1, 0, 0, 0, 0 }, .BuildCosts = { 62.50_GBP, 1.00_GBP, 1, }, - .DefaultPrices = { 12, 0 }, + .DefaultPrices = { 15, 0 }, .DefaultMusic = {}, .PhotoItem = ShopItem::Photo, .BonusValue = 39, diff --git a/src/openrct2/ride/rtd/gentle/CrookedHouse.h b/src/openrct2/ride/rtd/gentle/CrookedHouse.h index e30640288d..4d33826ab9 100644 --- a/src/openrct2/ride/rtd/gentle/CrookedHouse.h +++ b/src/openrct2/ride/rtd/gentle/CrookedHouse.h @@ -43,7 +43,7 @@ constexpr RideTypeDescriptor CrookedHouseRTD = .RatingsMultipliers = { 15, 8, 0 }, .UpkeepCosts = { 30, 1, 0, 0, 0, 0 }, .BuildCosts = { 32.50_GBP, 1.00_GBP, 1, }, - .DefaultPrices = { 6, 0 }, + .DefaultPrices = { 10, 0 }, .DefaultMusic = kMusicObjectGentle, .PhotoItem = ShopItem::Photo, .BonusValue = 22,