# HG changeset patch # User darkvater # Date 2004-08-12 22:29:37 # Node ID 0a71c809e6d0ed118297e384096e70914d2368ee # Parent dbfc54b77821ab12d7c12619961ff19377db18f1 (svn r34) -Fix [990770] Cargo delivery area patch for bug #989322. If station sign was too far away, there were goods acceptance/delivery issues (Celstar) diff --git a/economy.c b/economy.c --- a/economy.c +++ b/economy.c @@ -992,7 +992,7 @@ static void DeliverGoodsToIndustry(TileI /* 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]) &&