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