From 4172f3eb4edd70bb1bcfbc8e695d5f153038e32a Mon Sep 17 00:00:00 2001 From: Silent Date: Mon, 24 Jan 2022 11:40:29 +0100 Subject: [PATCH] Close #16493: Boat Hide and Submarine Ride have odd support costs --- distribution/changelog.txt | 1 + src/openrct2/ride/water/meta/BoatHire.h | 2 +- src/openrct2/ride/water/meta/SubmarineRide.h | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 6ce0704664..882fa2e13e 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -21,6 +21,7 @@ - Improved: [#16408] Improve --version cli option to report more compatibility information. - Change: [#16077] When importing SV6 files, the RCT1 land types are only added when they were actually used. - Change: [#16424] Following an entity in the title sequence no longer toggles underground view when it's underground. +- Change: [#16493] Boat Hire and Submarine Ride support costs now match their visual appearance. - Fix: [#13336] Can no longer place Bumble Bee track design (reverts #12707). - Fix: [#15571] Non-ASCII characters in scenario description get distorted while saving. - Fix: [#15830] Objects with RCT1 images are very glitchy if OpenRCT2 is not linked to an RCT1 install. diff --git a/src/openrct2/ride/water/meta/BoatHire.h b/src/openrct2/ride/water/meta/BoatHire.h index a2ca666fbf..42ac91bbd3 100644 --- a/src/openrct2/ride/water/meta/BoatHire.h +++ b/src/openrct2/ride/water/meta/BoatHire.h @@ -40,7 +40,7 @@ constexpr const RideTypeDescriptor BoatHireRTD = SET_FIELD(RatingsCalculationFunction, ride_ratings_calculate_boat_hire), SET_FIELD(RatingsMultipliers, { 70, 6, 0 }), SET_FIELD(UpkeepCosts, { 50, 1, 0, 4, 0, 0 }), - SET_FIELD(BuildCosts, { 55, 5, 5, }), + SET_FIELD(BuildCosts, { 55, 0, 5, }), SET_FIELD(DefaultPrices, { 10, 0 }), SET_FIELD(DefaultMusic, MUSIC_OBJECT_WATER), SET_FIELD(PhotoItem, ShopItem::Photo), diff --git a/src/openrct2/ride/water/meta/SubmarineRide.h b/src/openrct2/ride/water/meta/SubmarineRide.h index f8b80f6b90..e5b8710682 100644 --- a/src/openrct2/ride/water/meta/SubmarineRide.h +++ b/src/openrct2/ride/water/meta/SubmarineRide.h @@ -42,7 +42,7 @@ constexpr const RideTypeDescriptor SubmarineRideRTD = SET_FIELD(RatingsCalculationFunction, ride_ratings_calculate_submarine_ride), SET_FIELD(RatingsMultipliers, { 70, 6, 0 }), SET_FIELD(UpkeepCosts, { 50, 1, 0, 4, 0, 0 }), - SET_FIELD(BuildCosts, { 70, 0, 5, }), + SET_FIELD(BuildCosts, { 70, 5, 5, }), SET_FIELD(DefaultPrices, { 10, 0 }), SET_FIELD(DefaultMusic, MUSIC_OBJECT_WATER), SET_FIELD(PhotoItem, ShopItem::Photo),