Removed a non-functional option from the settings.

This commit is contained in:
MetalStormGhost 2023-12-09 11:24:47 +02:00
parent 76bab86e67
commit 3d435c7821
2 changed files with 0 additions and 10 deletions

View File

@ -837,10 +837,6 @@ class PretenseLuaGenerator(LuaGenerator):
+ str(self.game.settings.pretense_maxdistfromfront_distance * 1000)
+ "\n"
)
if self.game.settings.pretense_do_not_generate_sead_missions:
lua_string_config += "Config.disablePlayerSead = true\n"
else:
lua_string_config += "Config.disablePlayerSead = false\n"
trigger = TriggerStart(comment="Pretense config")
trigger.add_action(DoScript(String(lua_string_config)))

View File

@ -1006,12 +1006,6 @@ class Settings:
"which don't have an existing supply route defined in the campaign."
),
)
pretense_do_not_generate_sead_missions: bool = boolean_option(
"Do not generate player SEAD missions",
page=PRETENSE_PAGE,
section=GENERAL_SECTION,
default=False,
)
pretense_num_of_cargo_planes: int = bounded_int_option(
"Number of cargo planes per side",
page=PRETENSE_PAGE,