Serialize warehouses & support for dynamic slots/cargo

This commit is contained in:
Raffson
2024-07-20 00:54:45 +02:00
parent 75dd67a145
commit 0d56c271df
3 changed files with 69 additions and 1 deletions

View File

@@ -893,6 +893,34 @@ class Settings:
" and reapplied at split/racetrack end for applicable flights. "
),
)
dynamic_slots: bool = boolean_option(
"Dynamic slots",
MISSION_GENERATOR_PAGE,
GAMEPLAY_SECTION,
default=False,
detail=(
"Enables dynamic slots. Please note that losses from dynamic slots won't be registered."
),
)
dynamic_slots_hot: bool = boolean_option(
"Allow dynamic slot hot start",
MISSION_GENERATOR_PAGE,
GAMEPLAY_SECTION,
default=True,
detail=(
"Enables hot start for dynamic slots."
),
)
dynamic_cargo: bool = boolean_option(
"Dynamic cargo",
MISSION_GENERATOR_PAGE,
GAMEPLAY_SECTION,
default=True,
detail=(
"Enables dynamic cargo for airfields, ships, FARPs & warehouses."
),
)
# Performance
perf_smoke_gen: bool = boolean_option(