"Bestehende Region von Ebene in Berg verändert"
Kein terraforming von bewohnten regionen in autoseed()
Issue: 945
This commit is contained in:
Enno Rehling 2006-07-26 23:30:50 +00:00
parent aadf37da9b
commit e3677a845c
1 changed files with 1 additions and 1 deletions

View File

@ -505,7 +505,7 @@ autoseed(newfaction ** players, int nsize, boolean new_island)
direction_t d; direction_t d;
for (d=0;d!=MAXDIRECTIONS;++d) { for (d=0;d!=MAXDIRECTIONS;++d) {
region * rn = rconnect(r, d); region * rn = rconnect(r, d);
if (rn && rn->land) { if (rn && rn->land && virgin_region(rn)) {
/* only expand islands that aren't single-islands and not too big already */ /* only expand islands that aren't single-islands and not too big already */
int n = island_size(rn); int n = island_size(rn);
if (n>2 && n<MAXISLANDSIZE) { if (n>2 && n<MAXISLANDSIZE) {