Nachbesserung zum vorangegangenen commit.
This commit is contained in:
Enno Rehling 2005-05-28 09:14:01 +00:00
parent 7748f4612d
commit d042e89542
1 changed files with 5 additions and 7 deletions

View File

@ -2674,9 +2674,8 @@ prepare_report(faction * f)
while (rp) {
region * rl = rp->data;
if (rterrain(rl) == T_OCEAN) {
add_seen(seen, rl, see_lighthouse, false);
if (distance(rl, r)==light) {
direction_t d;
add_seen(seen, rl, see_lighthouse, false);
for (d=0;d!=MAXDIRECTIONS;++d) {
region * rn = rconnect(rl, d);
if (rn!=NULL) {
@ -2684,7 +2683,6 @@ prepare_report(faction * f)
}
}
}
}
rp = rp->next;
}
free_regionlist(rlist);