1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 19:43:06 +01:00

Fix vehicles in imported S4's not leaving the station

This commit is contained in:
Gymnasiast
2016-02-27 14:36:39 +01:00
committed by Ted John
parent c72a4caa75
commit e27e0611ae

View File

@@ -2215,7 +2215,7 @@ static void rct1_import_ride(rct1_s4 *s4, rct_ride *dst, rct1_ride *src)
dst->station_heights[i] = src->station_height[i] / 2;
dst->station_length[i] = src->station_length[i];
dst->station_depart[i] = src->station_light[i];
dst->train_at_station[i] = src->station_depart[i];
dst->train_at_station[i] = 0xFF; // Use src->station_depart[i] when we import with guests and vehicles intact
dst->entrances[i] = src->entrance[i];
dst->exits[i] = src->exit[i];
dst->queue_time[i] = src->queue_time[i];