From 371f1fd01606641fd9967b01a83226b255d37c8c Mon Sep 17 00:00:00 2001 From: Hielke Morsink Date: Fri, 23 Aug 2019 21:54:54 +0200 Subject: [PATCH] Fix #9926: Africa - Oasis park has wrong peep spawn (#9927) --- distribution/changelog.txt | 5 +++-- src/openrct2/rct2/S6Importer.cpp | 6 ++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 91cded86b3..2f7d3a54ab 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -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) diff --git a/src/openrct2/rct2/S6Importer.cpp b/src/openrct2/rct2/S6Importer.cpp index 218d80047a..3c00816074 100644 --- a/src/openrct2/rct2/S6Importer.cpp +++ b/src/openrct2/rct2/S6Importer.cpp @@ -911,6 +911,12 @@ public: { _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++)