From e2af1588ff085dc5de736932fbdf6851c1434a96 Mon Sep 17 00:00:00 2001 From: MaxMallon Date: Thu, 28 Apr 2022 18:57:30 +0200 Subject: [PATCH] Increase limit of park entry price --- distribution/changelog.txt | 1 + src/openrct2/world/Park.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 6248391b87..0cd79ad186 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -4,6 +4,7 @@ - Fix: [#17005] Unable to set patrol area for first staff member in park. - Fix: [#17073] Corrupt ride window and random crashes when trains have more than 144 cars. - Fix: [#17080] “Remove litter” cheat does not empty litter bins. +- Improved: [#16999] The maximum price for the park entry has been raised to £999. - Improved: [#17050] Transparency can be enabled directly without needing see-through enabled first. - Removed: [#16864] Title sequence editor (replaced by plug-in). diff --git a/src/openrct2/world/Park.h b/src/openrct2/world/Park.h index 057a7ba2b7..6a5f81123c 100644 --- a/src/openrct2/world/Park.h +++ b/src/openrct2/world/Park.h @@ -12,7 +12,7 @@ #include "../common.h" #include "Map.h" -constexpr auto MAX_ENTRANCE_FEE = 200.00_GBP; +constexpr auto MAX_ENTRANCE_FEE = 999.00_GBP; constexpr const uint8_t ParkRatingHistoryUndefined = std::numeric_limits::max(); constexpr const uint32_t GuestsInParkHistoryUndefined = std::numeric_limits::max();