summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-01-18 14:48:57 +0000
committersmatz <smatz@openttd.org>2008-01-18 14:48:57 +0000
commit66a0fafc93ca4ab9b8c5d2ee8548d2bb0f8426df (patch)
tree8599e5af03b27f75b1675cf70fbf29706d7ebe3f /src
parentdfb91c26ec2504bba971e5f9dfe827ebe751567d (diff)
downloadopenttd-66a0fafc93ca4ab9b8c5d2ee8548d2bb0f8426df.tar.xz
(svn r11917) -Fix (r3677): AI was reading wrong tile slope while building road bridge
Diffstat (limited to 'src')
-rw-r--r--src/ai/default/default.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/default/default.cpp b/src/ai/default/default.cpp
index d48f30211..6eb14a024 100644
--- a/src/ai/default/default.cpp
+++ b/src/ai/default/default.cpp
@@ -2918,7 +2918,7 @@ static inline void AiCheckBuildRoadBridgeHere(AiRoadFinder *arf, TileIndex tile,
tile_new = TILE_MASK(tile_new + TileOffsByDiagDir(dir2));
type = GetTileType(tile_new);
- if (type == MP_CLEAR || type == MP_TREES || GetTileSlope(tile, NULL) != SLOPE_FLAT) {
+ if (type == MP_CLEAR || type == MP_TREES || GetTileSlope(tile_new, NULL) != SLOPE_FLAT) {
// Allow a bridge if either we have a tile that's water, rail or street,
// or if we found an up tile.
if (!flag) return;