mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 10:21:57 -05:00
Fix additional missing land/construction rights tiles in WW's Inca Lost City & Renovation
This commit is contained in:
parent
11ae8247bd
commit
be9970b274
2 changed files with 20 additions and 0 deletions
|
@ -19,6 +19,7 @@
|
|||
- Fix: [#21158] [Plugin] Potential crash using setInterval/setTimeout within the callback.
|
||||
- Fix: [#21171] [Plugin] Crash creating entities with no more entity slots available.
|
||||
- Fix: [#21178] Inca Lost City’s scenario description incorrectly states there are height restrictions.
|
||||
- Fix: [#21179] Additional missing land/construction rights tiles in Inca Lost City & Renovation.
|
||||
- Fix: [#21198] [Plugin] Setting brake or booster speeds on a tile element doesn’t work.
|
||||
|
||||
0.4.7 (2023-12-31)
|
||||
|
|
|
@ -835,8 +835,17 @@ namespace RCT2
|
|||
|| String::IEquals(gScenarioFileName, "south america - inca lost city.sea"))
|
||||
{
|
||||
// clang-format off
|
||||
FixLandOwnershipTilesWithOwnership(
|
||||
{
|
||||
{ 15, 59 },
|
||||
},
|
||||
OWNERSHIP_UNOWNED);
|
||||
FixLandOwnershipTilesWithOwnership(
|
||||
{
|
||||
{ 11, 64 }, { 11, 65 }, { 11, 66 },
|
||||
{ 13, 68 }, { 13, 69 },
|
||||
{ 14, 69 },
|
||||
{ 15, 59 },
|
||||
{ 55, 60 },
|
||||
{ 61, 6 },
|
||||
{ 86, 63 },
|
||||
|
@ -934,6 +943,16 @@ namespace RCT2
|
|||
OWNERSHIP_AVAILABLE, true);
|
||||
// clang-format on
|
||||
}
|
||||
else if (String::Equals(_s6.ScenarioFilename, "Europe - Renovation.SC6"))
|
||||
{
|
||||
// clang-format off
|
||||
FixLandOwnershipTilesWithOwnership(
|
||||
{
|
||||
{ 12, 21 },
|
||||
},
|
||||
OWNERSHIP_OWNED);
|
||||
// clang-format on
|
||||
}
|
||||
else if (
|
||||
String::IEquals(gScenarioFileName, "N America - Extreme Hawaiian Island.SC6")
|
||||
|| String::IEquals(gScenarioFileName, "n america - extreme hawaiian island.sea"))
|
||||
|
|
Loading…
Reference in a new issue