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

fix farris wheel breaking when set in backwards rotation

This commit is contained in:
Lucas Riutzel
2015-12-06 16:08:11 -06:00
parent 1a46b8b6b6
commit 489d047c66

View File

@@ -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;
}