@@ -989,13 +989,13 @@ static void DeliverGoodsToIndustry(TileI
Industry *ind, *best;
int t, u;
/* Check if there's an industry close to the station that accepts
* the cargo */
best = NULL;
u = 0x11;
u = _patches.station_spread + 8;
for(ind = _industries; ind != endof(_industries); ind++) {
if (ind->xy != 0 && (cargo_type == ind->accepts_cargo[0] || cargo_type
== ind->accepts_cargo[1] || cargo_type == ind->accepts_cargo[2]) &&
ind->produced_cargo[0] != 0xFF &&
ind->produced_cargo[0] != cargo_type &&
(t=GetTileDist(ind->xy, xy)) < u) {
Status change: