1
0
Fork 0

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

release/0.7
smatz 2008-12-19 20:53:38 +00:00
parent e1565c5707
commit a7f82bd11a
1 changed files with 1 additions and 1 deletions

View File

@ -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)) {