forked from github/server
Nachbesserung zum vorangegangenen commit.
This commit is contained in:
parent
7748f4612d
commit
d042e89542
1 changed files with 5 additions and 7 deletions
|
@ -2674,14 +2674,12 @@ prepare_report(faction * f)
|
||||||
while (rp) {
|
while (rp) {
|
||||||
region * rl = rp->data;
|
region * rl = rp->data;
|
||||||
if (rterrain(rl) == T_OCEAN) {
|
if (rterrain(rl) == T_OCEAN) {
|
||||||
|
direction_t d;
|
||||||
add_seen(seen, rl, see_lighthouse, false);
|
add_seen(seen, rl, see_lighthouse, false);
|
||||||
if (distance(rl, r)==light) {
|
for (d=0;d!=MAXDIRECTIONS;++d) {
|
||||||
direction_t d;
|
region * rn = rconnect(rl, d);
|
||||||
for (d=0;d!=MAXDIRECTIONS;++d) {
|
if (rn!=NULL) {
|
||||||
region * rn = rconnect(rl, d);
|
add_seen(seen, rn, see_neighbour, false);
|
||||||
if (rn!=NULL) {
|
|
||||||
add_seen(seen, rn, see_neighbour, false);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue