Add performance option to not cull threatening IADS (#1953)

- Don't cull EWRs in detection range.
- Don't cull SAMs within threat range + small buffer.
This commit is contained in:
SnappyComebacks
2022-02-05 18:38:25 -07:00
committed by GitHub
parent ac5d20ff82
commit 3987f26689
4 changed files with 39 additions and 5 deletions

View File

@@ -450,6 +450,12 @@ class Settings:
max=10000,
causes_expensive_game_update=True,
)
perf_do_not_cull_threatening_iads: bool = boolean_option(
"Do not cull threatening IADS",
page=MISSION_GENERATOR_PAGE,
section=PERFORMANCE_SECTION,
default=True,
)
perf_do_not_cull_carrier: bool = boolean_option(
"Do not cull carrier's surroundings",
page=MISSION_GENERATOR_PAGE,