only use lists for lighthouses with range > 3.

This commit is contained in:
Enno Rehling 2016-09-24 11:33:00 +02:00
parent 9eb376e0e5
commit d758f065d5
1 changed files with 1 additions and 1 deletions

View File

@ -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 {