src/ship_cmd.cpp
changeset 9336 3f75a2c5e0d3
parent 9332 2e120d0bd632
child 9339 daaa2adbaf99
--- a/src/ship_cmd.cpp	Sun Apr 06 07:22:26 2008 +0000
+++ b/src/ship_cmd.cpp	Sun Apr 06 07:48:51 2008 +0000
@@ -645,10 +645,10 @@
 								return;
 							}
 						} else if (v->current_order.IsType(OT_GOTO_STATION)) {
-							v->last_station_visited = v->current_order.dest;
+							v->last_station_visited = v->current_order.GetDestination();
 
 							/* Process station in the orderlist. */
-							Station *st = GetStation(v->current_order.dest);
+							Station *st = GetStation(v->current_order.GetDestination());
 							if (st->facilities & FACIL_DOCK) { // ugly, ugly workaround for problem with ships able to drop off cargo at wrong stations
 								ShipArrivesAt(v, st);
 								v->BeginLoading();