station_cmd.c
changeset 4389 e4555522d257
parent 4354 684ab9249dae
child 4393 1e3d47fcdab6
--- a/station_cmd.c	Sat Aug 26 14:44:55 2006 +0000
+++ b/station_cmd.c	Sat Aug 26 16:34:03 2006 +0000
@@ -1863,7 +1863,7 @@
 		if (v->type == VEH_Ship) {
 			const Order *order;
 			FOR_VEHICLE_ORDERS(v, order) {
-				if (order->type == OT_GOTO_STATION && order->station == st->index) {
+				if (order->type == OT_GOTO_STATION && order->dest.station == st->index) {
 					return true;
 				}
 			}
@@ -2333,7 +2333,7 @@
 			StationID station_id = GetStationIndex(tile);
 
 			if ((!(v->current_order.flags & OF_NON_STOP) && !_patches.new_nonstop) ||
-					(v->current_order.type == OT_GOTO_STATION && v->current_order.station == station_id)) {
+					(v->current_order.type == OT_GOTO_STATION && v->current_order.dest.station == station_id)) {
 				if (!(_patches.new_nonstop && v->current_order.flags & OF_NON_STOP) &&
 						v->current_order.type != OT_LEAVESTATION &&
 						v->last_station_visited != station_id) {
@@ -2412,7 +2412,7 @@
 	DeleteWindowById(WC_STATION_VIEW, index);
 
 	/* Now delete all orders that go to the station */
-	RemoveOrderFromAllVehicles(OT_GOTO_STATION, index);
+	RemoveOrderFromAllVehicles(OT_GOTO_STATION, (DestinationID)index);
 
 	//And do the same with aircraft that have the station as a hangar-stop
 	FOR_ALL_VEHICLES(v) {
@@ -2420,7 +2420,7 @@
 		if (v->type == VEH_Aircraft) {
 			Order *order;
 			FOR_VEHICLE_ORDERS(v, order) {
-				if (order->type == OT_GOTO_DEPOT && order->station == index) {
+				if (order->type == OT_GOTO_DEPOT && order->dest.station == index) {
 					order->type = OT_DUMMY;
 					order->flags = 0;
 					invalidate = true;