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:
parent
b392b68bd5
commit
9623f3e038
2 changed files with 4 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue