summaryrefslogtreecommitdiff
path: root/town_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'town_cmd.c')
-rw-r--r--town_cmd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/town_cmd.c b/town_cmd.c
index 73cab9989..836657ab6 100644
--- a/town_cmd.c
+++ b/town_cmd.c
@@ -1036,8 +1036,9 @@ static const byte _num_initial_towns[3] = {
void GenerateTowns(void)
{
- uint n;
- n = _num_initial_towns[_opt.diff.number_towns] + (Random()&7);
+ uint n =
+ ScaleByMapSize(_num_initial_towns[_opt.diff.number_towns] + (Random() & 7));
+
do CreateRandomTown(); while (--n);
}