1
0
Fork 0

(svn r11436) -Fix [FS#1439]: Towns would not build roads on slopes. Patch by divide.

release/0.6
rubidium 2007-11-15 17:51:36 +00:00
parent 56b1317e70
commit 53e811ff29
1 changed files with 1 additions and 1 deletions

View File

@ -729,7 +729,7 @@ no_slope:
/* If the tile is not a slope in the right direction, then
* maybe terraform some. */
desired_slope = (dir == DIAGDIR_NW || dir == DIAGDIR_SE) ? SLOPE_NE : SLOPE_NW;
desired_slope = (dir == DIAGDIR_NW || dir == DIAGDIR_SE) ? SLOPE_NW : SLOPE_NE;
if (desired_slope != cur_slope && ComplementSlope(desired_slope) != cur_slope) {
uint32 r = Random();