mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 11:03:00 +01:00
Fix #5238: RCT1 import: Rides are initially free when placing them
This commit is contained in:
@@ -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)
|
||||
------------------------------------------------------------------------
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user