From e27e0611ae5ba62df56b5d0c33bba0458211b321 Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Sat, 27 Feb 2016 14:36:39 +0100 Subject: [PATCH] Fix vehicles in imported S4's not leaving the station --- src/rct1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rct1.c b/src/rct1.c index 7921be8929..a65b65dd48 100644 --- a/src/rct1.c +++ b/src/rct1.c @@ -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];