From 489d047c66a3231e4e93e3f8d684353a97a14a85 Mon Sep 17 00:00:00 2001 From: Lucas Riutzel Date: Sun, 6 Dec 2015 16:08:11 -0600 Subject: [PATCH] fix farris wheel breaking when set in backwards rotation --- src/peep/peep.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/peep/peep.c b/src/peep/peep.c index ad2a93fa1c..1ceb44b839 100644 --- a/src/peep/peep.c +++ b/src/peep/peep.c @@ -2290,8 +2290,9 @@ void peep_update_ride_sub_state_7(rct_peep* peep){ vehicle = GET_VEHICLE(vehicle->next_vehicle_on_train); } - // Unsure why backward rotation is missing. - if (ride->mode != RIDE_MODE_FORWARD_ROTATION){ + // Check if ride is NOT Ferris Wheel. + if (ride->mode != RIDE_MODE_FORWARD_ROTATION && + ride->mode != RIDE_MODE_BACKWARD_ROTATION){ if (vehicle->num_peeps - 1 != peep->current_seat) return; }