Skip to content

Commit

Permalink
Fix #9926: Africa - Oasis park has wrong peep spawn (#9927)
Browse files Browse the repository at this point in the history
  • Loading branch information
Broxzier authored and Gymnasiast committed Aug 23, 2019
1 parent 1ee5c0f commit 371f1fd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 3 additions & 2 deletions distribution/changelog.txt
Expand Up @@ -10,8 +10,9 @@
- Fix: [#9625] Show correct cost in scenery selection.
- Fix: [#9669] The tile inspector shortcut key does not work with debugging tools disabled.
- Fix: [#9717] Scroll bars do not render correctly when using OpenGL renderer.
- Fix: [#9729] Peeps do not take into account height difference when deciding to pathfind to a ride entrance. (original bug)
- Fix: [#9603] Don't render audio when master volume is turned off
- Fix: [#9729] Peeps do not take into account height difference when deciding to pathfind to a ride entrance (original bug).
- Fix: [#9603] Don't render audio when master volume is turned off.
- Fix: [#9926] Africa - Oasis park has wrong peep spawn (original bug).
- Improved: [#9466] Add the rain weather effect to the OpenGL renderer.

0.2.3 (2019-07-10)
Expand Down
6 changes: 6 additions & 0 deletions src/openrct2/rct2/S6Importer.cpp
Expand Up @@ -911,6 +911,12 @@ class S6Importer final : public IParkImporter
{
_s6.peep_spawns[0].y = 1296;
}
// #9926: Africa - Oasis has peeps spawning on the edge underground near the entrance
else if (String::Equals(_s6.scenario_filename, "Africa - Oasis.SC6"))
{
_s6.peep_spawns[0].y = 2128;
_s6.peep_spawns[0].z = 7;
}

gPeepSpawns.clear();
for (size_t i = 0; i < RCT12_MAX_PEEP_SPAWNS; i++)
Expand Down

0 comments on commit 371f1fd

Please sign in to comment.