1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Fix #9970: Wait for quarter load fails

Vehicle was always incorrectly flagged as ready to depart when quarter load is selected. Removed erroneous flag.
This commit is contained in:
aw20368
2019-09-14 09:06:16 -04:00
committed by Gymnasiast
parent 5e1d14f061
commit 3f10811426

View File

@@ -2406,7 +2406,6 @@ static void vehicle_update_waiting_for_passengers(rct_vehicle* vehicle)
if (load == 0)
{
vehicle->update_flags |= VEHICLE_UPDATE_FLAG_TRAIN_READY_DEPART;
train_ready_to_depart(vehicle, num_peeps_on_train, num_used_seats_on_train);
return;
}