npf.c
changeset 4527 b18634a31a4a
parent 4434 4175805666a5
child 4559 c853d2440065
--- a/npf.c	Sat Sep 02 22:47:45 2006 +0000
+++ b/npf.c	Sun Sep 03 08:25:27 2006 +0000
@@ -886,9 +886,9 @@
 	 * So only for train orders to stations we fill fstd->station_index, for all
 	 * others only dest_coords */
 	if (v->current_order.type == OT_GOTO_STATION && v->type == VEH_Train) {
-		fstd->station_index = v->current_order.dest.station;
+		fstd->station_index = v->current_order.dest;
 		/* Let's take the closest tile of the station as our target for trains */
-		fstd->dest_coords = CalcClosestStationTile(v->current_order.dest.station, v->tile);
+		fstd->dest_coords = CalcClosestStationTile(v->current_order.dest, v->tile);
 	} else {
 		fstd->dest_coords = v->dest_tile;
 		fstd->station_index = INVALID_STATION;