1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Fix: ghosts are counted in guest scenery or fountain thoughts

This commit is contained in:
Nick
2022-10-05 13:57:22 -04:00
committed by GitHub
parent 69721e66f7
commit 4aabc00335
4 changed files with 8 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ The following people are not part of the development team, but have been contrib
* Inseok Lee (dlunch) - Load save files from command line
* Jørn Lomax (jvlomax) - Configuration parser
* Alexander Overvoorde (Overv) - OpenGL improvements, Steam overlay detection, various bugfixes.
* (eezstreet) - Add finances button to toolbar
* (eezstreet) - Add finances button to toolbar, various bugfixes.
* Hielke Morsink (Broxzier) - Tile inspector, heightmap loader, misc.
* Joe Minor Jr (wolfreak99) - Various cheats, bugfixes, new About and Changelog windows.
* Thomas den Hollander (ThomasdenH) - Dithering in sprite importer, invert viewport dragging, park rating cheats misc.

View File

@@ -1,6 +1,7 @@
0.4.3 (in development)
------------------------------------------------------------------------
- Fix: [#14312] Research ride type message incorrect.
- Fix: [#18122] Ghosts count towards “Great scenery!” guest thought.
0.4.2 (2022-10-05)
------------------------------------------------------------------------

View File

@@ -2924,6 +2924,11 @@ static PeepThoughtType peep_assess_surroundings(int16_t centre_x, int16_t centre
{
Ride* ride;
if (tileElement->IsGhost())
{
continue;
}
switch (tileElement->GetType())
{
case TileElementType::Path:

View File

@@ -42,7 +42,7 @@
// This string specifies which version of network stream current build uses.
// It is used for making sure only compatible builds get connected, even within
// single OpenRCT2 version.
#define NETWORK_STREAM_VERSION "0"
#define NETWORK_STREAM_VERSION "1"
#define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION
static Peep* _pickup_peep = nullptr;