From 889293f2b77dbe81b560055f19a2e0c630182003 Mon Sep 17 00:00:00 2001 From: Rik Smeets <30838294+rik-smeets@users.noreply.github.com> Date: Sun, 31 Jul 2022 14:07:36 +0200 Subject: [PATCH] Lower default price for the Crooked House (#17655) Guests didn't want to pay the previous default price, even if the ride was brand new. --- distribution/changelog.txt | 1 + src/openrct2/ride/gentle/meta/CrookedHouse.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 8feb1c9546..f9c057fefb 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -9,6 +9,7 @@ - Improved: [#17575] You can now search for Authors in Object Selection. - Change: [#17319] Giant screenshots are now cropped to the horizontal view-clipping selection. - Change: [#17499] Update error text when using vehicle incompatible with TD6 and add error when using incompatible track elements. +- Change: [#17655] Lower default price for the Crooked House. - Fix: [#7466] Coaster track not drawn at tunnel exit. - Fix: [#16392] Scenery on sloped surface is placed at wrong height. - Fix: [#16476] The game sometimes crashes when demolishing a maze. diff --git a/src/openrct2/ride/gentle/meta/CrookedHouse.h b/src/openrct2/ride/gentle/meta/CrookedHouse.h index 75723b5015..744f7f5708 100644 --- a/src/openrct2/ride/gentle/meta/CrookedHouse.h +++ b/src/openrct2/ride/gentle/meta/CrookedHouse.h @@ -42,7 +42,7 @@ constexpr const RideTypeDescriptor CrookedHouseRTD = SET_FIELD(RatingsMultipliers, { 15, 8, 0 }), SET_FIELD(UpkeepCosts, { 30, 1, 0, 0, 0, 0 }), SET_FIELD(BuildCosts, { 32.50_GBP, 1.00_GBP, 1, }), - SET_FIELD(DefaultPrices, { 10, 0 }), + SET_FIELD(DefaultPrices, { 6, 0 }), SET_FIELD(DefaultMusic, MUSIC_OBJECT_GENTLE), SET_FIELD(PhotoItem, ShopItem::Photo), SET_FIELD(BonusValue, 22),