town_cmd.c
changeset 468 3a36baf27955
parent 466 1e74865c03bf
child 470 08b29b012837
--- a/town_cmd.c	Sat Nov 20 02:25:31 2004 +0000
+++ b/town_cmd.c	Sat Nov 20 02:36:10 2004 +0000
@@ -1612,10 +1612,10 @@
 	}
 
 	if (_opt.landscape == LT_HILLY) {
-		if (GET_TILEHEIGHT(t->xy) >= _opt.snow_line &&	t->act_food == 0)
+ 		if (GET_TILEHEIGHT(t->xy) >= _opt.snow_line && t->act_food == 0 && t->population > 90)
 			return;
 	} else if (_opt.landscape == LT_DESERT) {
-		if (GetMapExtraBits(t->xy) == 1 && (t->act_food==0 || t->act_water==0))
+ 		if (GetMapExtraBits(t->xy) == 1 && (t->act_food==0 || t->act_water==0) && t->population > 60)
 			return;
 	}