forked from github/server
"Bestehende Region von Ebene in Berg verändert" Kein terraforming von bewohnten regionen in autoseed() Issue: 945
This commit is contained in:
parent
aadf37da9b
commit
e3677a845c
|
@ -505,7 +505,7 @@ autoseed(newfaction ** players, int nsize, boolean new_island)
|
|||
direction_t d;
|
||||
for (d=0;d!=MAXDIRECTIONS;++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 */
|
||||
int n = island_size(rn);
|
||||
if (n>2 && n<MAXISLANDSIZE) {
|
||||
|
|
Loading…
Reference in New Issue