Changeset - r1769:1caffb18366e
[Not reviewed]
master
0 1 0
celestar - 19 years ago 2005-05-06 12:00:25
celestar@openttd.org
(svn r2273) -Fix: Road vehicles no longer try to obtain a slot when they have crashed. (peter1138)
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
roadveh_cmd.c
Show inline comments
 
@@ -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;
0 comments (0 inline, 0 general)