ai/trolly/trolly.c
changeset 3644 7c9a6a91873b
parent 3577 c6532e0bee4c
child 3793 7fe24e10ea63
--- a/ai/trolly/trolly.c	Sun Apr 23 18:37:53 2006 +0000
+++ b/ai/trolly/trolly.c	Sun Apr 23 19:08:33 2006 +0000
@@ -838,8 +838,8 @@
 			if (IsTileType(tile, MP_TUNNELBRIDGE)) continue;
 			// Is the terrain clear?
 			if (IsTileType(t, MP_CLEAR) || IsTileType(t, MP_TREES)) {
-				// If the current tile is on a slope (tileh != 0) then we do not allow this
-				if (GetTileSlope(tile, NULL) != 0) continue;
+				// If the current tile is on a slope then we do not allow this
+				if (GetTileSlope(tile, NULL) != SLOPE_FLAT) continue;
 				// Check if everything went okay..
 				r = AiNew_Build_Depot(p, t, ReverseDiagDir(j), 0);
 				if (CmdFailed(r)) continue;