fairland: Fix "Only managed to grow" error message off by one

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2020-07-25 09:20:09 +02:00
parent b392b68bd5
commit 9623f3e038
2 changed files with 4 additions and 3 deletions

View file

@ -811,7 +811,8 @@ grow_continents(void)
find_coast(c);
if (!done)
qprint("Only managed to grow %d out of %d sectors.\n", secs, sc);
qprint("Only managed to grow %d out of %d sectors.\n",
secs - 1, sc);
ctot = nc;
return done;
}