Fix missing water tile in Infernal Views (#19641)

* Update S6Importer.cpp

Edit a stray tile in the lava river of Infernal Views to have its missing lava.

* Update changelog.txt

* Update contributors.md
This commit is contained in:
HtotheTML 2023-03-14 12:26:51 -07:00 committed by GitHub
parent d0821d05ac
commit b41438bbc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 0 deletions

View File

@ -212,6 +212,7 @@ The following people are not part of the development team, but have been contrib
* (zzril)
* Ernest Elgin (eaeiv)
* Ernest Wong (ErnWong)
* Joel H. (HtotheTML)
## Toolchain

View File

@ -65,6 +65,7 @@
- Fix: [#19493] SV4 saves not importing the correct vehicle colours.
- Fix: [#19517] Crash when peeps try to exit or enter hacked rides that have no waypoints specified.
- Fix: [#19524] Staff counter shows incorrect values if there are more than 32767 staff members.
- Fix: [#19641] Missing water tile in Infernal Views' river.
0.4.3 (2022-12-14)
------------------------------------------------------------------------

View File

@ -507,6 +507,7 @@ namespace RCT2
FixLandOwnership();
FixAyersRockScenario();
FixInfernalViewsScenario();
ResearchDetermineFirstOfType();
UpdateConsolidatedPatrolAreas();
@ -695,6 +696,16 @@ namespace RCT2
}
}
void FixInfernalViewsScenario() const
{
if (!_isScenario || !String::Equals(_s6.ScenarioFilename, "Infernal Views.SC6"))
return;
auto surfaceElement = MapGetSurfaceElementAt(TileCoordsXY{ 45, 62 }.ToCoordsXY());
surfaceElement->SetWaterHeight(96);
}
void ImportRides()
{
for (uint8_t index = 0; index < Limits::MaxRidesInPark; index++)