diff options
-rw-r--r-- | roadveh_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roadveh_cmd.c b/roadveh_cmd.c index 64ba65548..7cc09504e 100644 --- a/roadveh_cmd.c +++ b/roadveh_cmd.c @@ -1634,7 +1634,7 @@ void OnNewDay_RoadVeh(Vehicle *v) CheckOrders(v->index, OC_INIT); /* update destination */ - if (v->current_order.type == OT_GOTO_STATION) { + if (v->current_order.type == OT_GOTO_STATION && !(v->vehstatus & VS_CRASHED)) { RoadStop *rs; uint32 mindist = 0xFFFFFFFF; int num; |