1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-24 06:59:10 +00:00

(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

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;
}