Index: server/settlers.c =================================================================== RCS file: /home/freeciv/CVS/freeciv/server/settlers.c,v retrieving revision 1.146 diff -u -r1.146 settlers.c --- server/settlers.c 2002/09/27 12:32:47 1.146 +++ server/settlers.c 2002/10/29 14:10:43 @@ -971,7 +971,7 @@ build a city at Y */ moves *= 2; /* and then build its NEXT city halfway between X and Y. -- Syela */ - b = city_desirability(pplayer, x, y) * (ai_fuzzy(pplayer, TRUE) ? 1 : 0); + b = city_desirability(pplayer, x, y); newv = amortize(b, moves); b = (food_upkeep * FOOD_WEIGHTING) * MORT; @@ -1263,8 +1263,7 @@ * if so, modify: gx, gy, best_newv, best_act */ if (unit_flag(punit, F_CITIES) && - pplayer->ai.control && - ai_fuzzy(pplayer, TRUE)) { /* don't want to make cities otherwise */ + pplayer->ai.control) { /* don't want to make cities otherwise */ int nx, ny; int want = evaluate_city_building(punit, &nx, &ny, &ferryboat);