Fix additional missing land/construction rights tiles in WW's Inca Lost City & Renovation

This commit is contained in:
HtotheTML 2024-01-28 14:46:50 -08:00 committed by GitHub
parent 11ae8247bd
commit be9970b274
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 20 additions and 0 deletions

View file

@ -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 Citys 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 doesnt work.
0.4.7 (2023-12-31)

View file

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