- viele schiffe in der gleichen region, nur eines konnte abtreiben.
- leuchtturm wirkt nicht auf unbemannte schiffe.
This commit is contained in:
Enno Rehling 2004-12-22 22:57:47 +00:00
parent e60e14930e
commit 6af2549c7d
1 changed files with 1 additions and 7 deletions

View File

@ -709,12 +709,6 @@ drifting_ships(region * r)
continue;
}
/* Leuchtturm: Ok. */
if (check_leuchtturm(r, NULL)) {
shp = &sh->next;
continue;
}
/* Auswahl einer Richtung: Zuerst auf Land, dann
* zufällig. Falls unmögliches Resultat: vergiß es. */
d_offset = rand() % MAXDIRECTIONS;
@ -751,7 +745,7 @@ drifting_ships(region * r)
}
}
if (*shp != sh) shp = &sh->next;
if (*shp == sh) shp = &sh->next;
}
}
}