forked from github/server
only use lists for lighthouses with range > 3.
This commit is contained in:
parent
9eb376e0e5
commit
d758f065d5
1 changed files with 1 additions and 1 deletions
|
@ -1229,7 +1229,7 @@ static void prepare_lighthouse(building * b, report_context *ctx)
|
||||||
faction *f = ctx->f;
|
faction *f = ctx->f;
|
||||||
int range = lighthouse_range(b, f);
|
int range = lighthouse_range(b, f);
|
||||||
|
|
||||||
if (range > 2) {
|
if (range > 3) {
|
||||||
prepare_lighthouse_ql(f, get_regions_distance(b->region, range));
|
prepare_lighthouse_ql(f, get_regions_distance(b->region, range));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue