(svn r2138) -Fix: [ 1144154 ] The map has two dimensions, not one

This commit is contained in:
celestar 2005-04-03 06:26:31 +00:00
parent 64533d53dc
commit 5d937e4a23
1 changed files with 1 additions and 1 deletions

View File

@ -1132,7 +1132,7 @@ static void DeliverGoodsToIndustry(TileIndex xy, byte cargo_type, int num_pieces
== ind->accepts_cargo[1] || cargo_type == ind->accepts_cargo[2]) &&
ind->produced_cargo[0] != 0xFF &&
ind->produced_cargo[0] != cargo_type &&
(t = DistanceManhattan(ind->xy, xy)) < u) {
(t = DistanceManhattan(ind->xy, xy)) < 2 * u) {
u = t;
best = ind;
}