src/strings.cpp
changeset 10113 2aabf259aaf3
parent 10112 7e734c287259
child 10114 1ce7c1597f10
--- a/src/strings.cpp	Fri Sep 12 17:11:28 2008 +0000
+++ b/src/strings.cpp	Fri Sep 12 17:14:07 2008 +0000
@@ -838,11 +838,18 @@
 			}
 
 			case SCC_STATION_NAME: { // {STATION}
-				const Station* st = GetStation(GetInt32(&argv));
+				StationID sid = GetInt32(&argv);
 
-				if (!st->IsValid()) { // station doesn't exist anymore
+				if (!IsValidStationID(sid)) {
+					/* The station doesn't exist anymore. The only place where we might
+					 * be "drawing" an invalid station is in the case of cargo that is
+					 * in transit. */
 					buff = GetStringWithArgs(buff, STR_UNKNOWN_DESTINATION, NULL, last);
-				} else if (st->name != NULL) {
+					break;
+				}
+
+				const Station *st = GetStation(sid);
+				if (st->name != NULL) {
 					buff = strecpy(buff, st->name, last);
 				} else {
 					int64 temp[3];