Configurable tanker on-station time (#69)

This commit is contained in:
MetalStormGhost
2023-01-06 21:11:24 +02:00
committed by GitHub
parent 1deff6fa49
commit 01ee24c8cf
3 changed files with 17 additions and 0 deletions

View File

@@ -386,6 +386,14 @@ class Settings:
min=30,
max=150,
)
desired_tanker_on_station_time: timedelta = minutes_option(
"Desired tanker on-station time",
page=MISSION_GENERATOR_PAGE,
section=GAMEPLAY_SECTION,
default=timedelta(minutes=60),
min=30,
max=150,
)
# Mission specific
max_frontline_length: int = bounded_int_option(
"Maximum frontline length (km)",