diff --git a/src/modules/autoseed.c b/src/modules/autoseed.c index ad8eb6731..efb61245e 100644 --- a/src/modules/autoseed.c +++ b/src/modules/autoseed.c @@ -16,7 +16,7 @@ #include "market.h" -/* kernel includes */ + /* kernel includes */ #include #include #include @@ -94,7 +94,7 @@ static int count_demand(const region * r) static int recurse_regions(region * r, region_list ** rlist, -bool(*fun) (const region * r)) + bool(*fun) (const region * r)) { if (!fun(r)) return 0; @@ -159,12 +159,13 @@ newfaction *read_newfactions(const char *filename) if (sscanf(buf, "%54s %20s %8s %d %d %16s %d", email, race, lang, &bonus, &subscription, password, &alliance) < 3) { break; - } - if (email[0] == '#') { + } + if (email[0] == '#') { continue; } - if (email[0] == '\0') + if (email[0] == '\0') { break; + } if (password[0] == '\0') { size_t sz; sz = strlcpy(password, itoa36(rng_int()), sizeof(password)); @@ -172,17 +173,22 @@ newfaction *read_newfactions(const char *filename) } for (f = factions; f; f = f->next) { if (strcmp(f->email, email) == 0 && f->subscription - && f->age < MINAGE_MULTI) + && f->age < MINAGE_MULTI) { + log_warning("email %s already in use by %s", email, factionname(f)); break; + } } if (f && f->units) continue; /* skip the ones we've already got */ for (nf = newfactions; nf; nf = nf->next) { - if (strcmp(nf->email, email) == 0) + if (strcmp(nf->email, email) == 0) { + log_warning("duplicate new faction %s", email); break; + } } - if (nf) + if (nf) { continue; + } nf = calloc(sizeof(newfaction), 1); if (set_email(&nf->email, email) != 0) { log_error("Invalid email address for subscription %s: %s\n", itoa36(subscription), email); @@ -782,7 +788,7 @@ const terrain_type *random_terrain_e3(direction_t dir) static int random_neighbours(region * r, region_list ** rlist, -const terrain_type * (*terraformer) (direction_t), int n) + const terrain_type * (*terraformer) (direction_t), int n) { int nsize = 0; direction_t dir; @@ -935,7 +941,7 @@ int build_island_e3(int x, int y, int minsize, newfaction ** players, int numfac fset(r, RF_MARK); if (r->land) { if (nsize < minsize) { - nsize += random_neighbours(r, &rlist, &random_terrain_e3, minsize-nsize); + nsize += random_neighbours(r, &rlist, &random_terrain_e3, minsize - nsize); } else { nsize += random_neighbours(r, &rlist, &get_ocean, minsize - nsize); @@ -993,7 +999,7 @@ int build_island_e3(int x, int y, int minsize, newfaction ** players, int numfac rsetmoney(r, 50000); /* 2% = 1000 silver */ } else if (r->land) { - rsetmoney(r, rmoney(r) *4); + rsetmoney(r, rmoney(r) * 4); } } return nfactions;