From 222782b2287f4c6a32cb2180cca2c919b97c58ab Mon Sep 17 00:00:00 2001 From: Richard Jenkins Date: Fri, 28 Jul 2017 06:50:35 +0100 Subject: [PATCH] Fix #6007: 'Felicity Anderson' can affect peeps entering rides --- src/openrct2/network/network.h | 2 +- src/openrct2/peep/peep.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openrct2/network/network.h b/src/openrct2/network/network.h index 1324ee7786..ec576f7f5c 100644 --- a/src/openrct2/network/network.h +++ b/src/openrct2/network/network.h @@ -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 diff --git a/src/openrct2/peep/peep.c b/src/openrct2/peep/peep.c index 51a2b60137..e61aa01bd6 100644 --- a/src/openrct2/peep/peep.c +++ b/src/openrct2/peep/peep.c @@ -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) {