(svn r14693) -Codechange: replace one check in old AI (probably typo, but the effect was the same) (Yexo)

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
smatz 16 years ago
parent e1565c5707
commit a7f82bd11a

@ -3690,7 +3690,7 @@ static void AiStateRemoveStation(Company *c)
FOR_ALL_STATIONS(st) {
if (st->owner == _current_company && !in_use[st->index] &&
( (st->bus_stops != NULL && (tile = st->bus_stops->xy) != 0) ||
(st->truck_stops != NULL && (tile = st->truck_stops->xy)) != 0 ||
(st->truck_stops != NULL && (tile = st->truck_stops->xy) != 0) ||
(tile = st->train_tile) != 0 ||
(tile = st->dock_tile) != 0 ||
(tile = st->airport_tile) != 0)) {

Loading…
Cancel
Save