File diff r12404:d58b2d050240 → r12405:ba094e765533
src/saveload/afterload.cpp
Show inline comments
 
@@ -1921,13 +1921,13 @@ bool AfterLoadGame()
 
			if (s->age >= 12) {
 
				/* Station -> Station */
 
				const Station *from = Station::GetIfValid(s->from);
 
				const Station *to = Station::GetIfValid(s->to);
 
				if (from != NULL && to != NULL && from->owner == to->owner && Company::IsValidID(from->owner)) continue;
 
			} else {
 
				const CargoSpec *cs = GetCargo(s->cargo_type);
 
				const CargoSpec *cs = CargoSpec::Get(s->cargo_type);
 
				switch (cs->town_effect) {
 
					case TE_PASSENGERS:
 
					case TE_MAIL:
 
						/* Town -> Town */
 
						if (Town::IsValidID(s->from) && Town::IsValidID(s->to)) continue;
 
						break;