src/town_cmd.cpp
changeset 8381 895c66491749
parent 8376 eccdeb785b27
child 8399 1f301df8328a
--- a/src/town_cmd.cpp	Thu Nov 15 17:49:50 2007 +0000
+++ b/src/town_cmd.cpp	Thu Nov 15 17:51:36 2007 +0000
@@ -729,7 +729,7 @@
 
 		/* 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();