Add missing expansion island
The number of islands was off by one. The last island was created, but not actually placed on the map.
This commit is contained in:
parent
36044a0534
commit
eb473a6a24
1 changed files with 1 additions and 1 deletions
|
@ -832,7 +832,7 @@ grow_islands(void)
|
||||||
find_coast(c);
|
find_coast(c);
|
||||||
qprint(" %d(%d)", c - nc + 1, secs);
|
qprint(" %d(%d)", c - nc + 1, secs);
|
||||||
isecs[c] = secs;
|
isecs[c] = secs;
|
||||||
ctot = c;
|
ctot++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue