Increase limit of park entry price

This commit is contained in:
MaxMallon 2022-04-28 18:57:30 +02:00 committed by GitHub
parent f127a2c8bc
commit e2af1588ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -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<uint8_t>::max();
constexpr const uint32_t GuestsInParkHistoryUndefined = std::numeric_limits<uint32_t>::max();