mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 11:03:00 +01:00
Fix park boundaries for out-of-bounds monorails in Africa - Oasis & Blackpool Pleasure Beach (#21309)
This commit is contained in:
@@ -24,6 +24,7 @@
|
||||
- Fix: [#21198] [Plugin] Setting brake or booster speeds on a tile element doesn’t work.
|
||||
- Fix: [#21290] Sound keeps playing when paused from fast-forward mode.
|
||||
- Fix: [#21291] Hungry guests heading to any flat ride do not count for warning threshold (original bug).
|
||||
- Fix: [#21309] Africa - Oasis & Blackpool Pleasure Beach’s monorails are built outside the park’s land rights.
|
||||
- Fix: [#21316] Isolated land for sale tile on Extreme Hawaiian Island.
|
||||
|
||||
0.4.7 (2023-12-31)
|
||||
|
||||
@@ -2550,6 +2550,21 @@ namespace RCT1
|
||||
case SC_ALTON_TOWERS:
|
||||
FixLandOwnershipTilesWithOwnership({ { 11, 31 }, { 68, 112 }, { 72, 118 } }, OWNERSHIP_OWNED);
|
||||
break;
|
||||
case SC_BLACKPOOL_PLEASURE_BEACH:
|
||||
FixLandOwnershipTilesWithOwnership(
|
||||
{ { 93, 23 },
|
||||
{ 94, 23 },
|
||||
{ 95, 23 },
|
||||
{ 95, 24 },
|
||||
{ 96, 24 },
|
||||
{ 96, 25 },
|
||||
{ 97, 25 },
|
||||
{ 97, 26 },
|
||||
{ 97, 27 },
|
||||
{ 96, 28 } },
|
||||
OWNERSHIP_OWNED);
|
||||
FixLandOwnershipTilesWithOwnership({ { 94, 24 }, { 95, 25 } }, OWNERSHIP_CONSTRUCTION_RIGHTS_OWNED);
|
||||
break;
|
||||
case SC_FORT_ANACHRONISM:
|
||||
FixLandOwnershipTiles({ { 36, 87 }, { 54, 29 }, { 53, 88 } });
|
||||
break;
|
||||
|
||||
@@ -873,6 +873,12 @@ namespace RCT2
|
||||
{ 46, 87 },
|
||||
},
|
||||
OWNERSHIP_OWNED);
|
||||
FixLandOwnershipTilesWithOwnership(
|
||||
{
|
||||
{ 140, 58 }, { 141, 58 }, { 142, 58 }, { 143, 58 }, { 144, 58 }, { 145, 58 }, { 146, 58 }, { 147, 58 },
|
||||
{ 140, 74 }, { 141, 74 }, { 142, 74 }, { 143, 74 }, { 144, 74 }, { 145, 74 }, { 146, 74 }, { 147, 74 },
|
||||
},
|
||||
OWNERSHIP_CONSTRUCTION_RIGHTS_OWNED, true);
|
||||
// clang-format on
|
||||
}
|
||||
else if (
|
||||
|
||||
Reference in New Issue
Block a user