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:
Ron Koenderink 2008-01-25 08:12:49 -06:00 committed by Markus Armbruster
parent 36044a0534
commit eb473a6a24

View file

@ -832,7 +832,7 @@ grow_islands(void)
find_coast(c);
qprint(" %d(%d)", c - nc + 1, secs);
isecs[c] = secs;
ctot = c;
ctot++;
}
}