1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Close #16493: Boat Hide and Submarine Ride have odd support costs

This commit is contained in:
Silent
2022-01-24 11:40:29 +01:00
committed by GitHub
parent c5654de8aa
commit 4172f3eb4e
3 changed files with 3 additions and 2 deletions

View File

@@ -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.

View File

@@ -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),

View File

@@ -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),