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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user