mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-24 00:03:11 +01:00
Fix #6007: 'Felicity Anderson' can affect peeps entering rides
This commit is contained in:
committed by
Michael Steenbeek
parent
bb57e3aa45
commit
222782b228
@@ -55,7 +55,7 @@ extern "C" {
|
||||
// This define 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 "10"
|
||||
#define NETWORK_STREAM_VERSION "11"
|
||||
#define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
@@ -11273,7 +11273,7 @@ static void peep_make_passing_peeps_sick(rct_peep *peep, rct_peep *otherPeep)
|
||||
{
|
||||
if (peep == otherPeep)
|
||||
return;
|
||||
if (otherPeep->state == PEEP_STATE_QUEUING)
|
||||
if (otherPeep->state != PEEP_STATE_WALKING)
|
||||
return;
|
||||
|
||||
if (otherPeep->action == PEEP_ACTION_NONE_1 || otherPeep->action == PEEP_ACTION_NONE_2) {
|
||||
|
||||
Reference in New Issue
Block a user