From: Ron Koenderink Date: Fri, 25 Jan 2008 14:12:49 +0000 (-0600) Subject: Add missing expansion island X-Git-Tag: v4.3.12~202 X-Git-Url: http://git.pond.sub.org/?p=empserver;a=commitdiff_plain;h=eb473a6a24e951d11d5bf63318529d775875404a Add missing expansion island The number of islands was off by one. The last island was created, but not actually placed on the map. --- diff --git a/src/util/fairland.c b/src/util/fairland.c index d7802add0..104aa9df7 100644 --- a/src/util/fairland.c +++ b/src/util/fairland.c @@ -832,7 +832,7 @@ grow_islands(void) find_coast(c); qprint(" %d(%d)", c - nc + 1, secs); isecs[c] = secs; - ctot = c; + ctot++; } }