Fix #5238: RCT1 import: Rides are initially free when placing them

This commit is contained in:
Ted John 2017-02-19 11:18:30 +00:00
parent a10173b928
commit f73aebe51d
2 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@
- Fix: [#4689] Object selection tabs sometimes flicker.
- Fix: [#5150] --openrct-data-path sets user data path instead of OpenRCT2 data path.
- Fix: [#5188] Clicking on a Magic Carpet doesn't open the ride window.
- Fix: [#5238] RCT1 import: Rides are initially free when placing them.
0.0.6 (2017-01-29)
------------------------------------------------------------------------

View File

@ -6097,7 +6097,7 @@ foundRideEntry:
ride->price_secondary = RideData4[ride->type].price_secondary;
if (rideEntry->shop_item == SHOP_ITEM_NONE) {
if (!(gParkFlags & PARK_FLAGS_PARK_FREE_ENTRY)) {
if (!(gParkFlags & PARK_FLAGS_PARK_FREE_ENTRY) && !gCheatsUnlockAllPrices) {
ride->price = 0;
}
} else {