1
0
Fork 0

(svn r3645) Fix stupid typos in last (r3644) commit *sigh*

release/0.5
tron 2006-02-21 07:44:33 +00:00
parent 4b46883751
commit 2e3e9daf32
1 changed files with 2 additions and 2 deletions

View File

@ -433,9 +433,9 @@ static bool DoCheckTunnelInWay(TileIndex tile, uint z, uint dir)
do {
tile -= delta;
height = GetTileZ(tile);
} while (z < tile);
} while (z < height);
if (z == tile &&
if (z == height &&
IsTileType(tile, MP_TUNNELBRIDGE) &&
GB(_m[tile].m5, 4, 4) == 0 &&
GB(_m[tile].m5, 0, 2) == dir) {