Add Easy Communication Setting

allow to enforce the mission setting for easy communication
implements #1425
This commit is contained in:
RndName
2021-12-12 01:15:46 +01:00
parent d11d3b58f7
commit 2c21644a2c
3 changed files with 16 additions and 0 deletions

View File

@@ -138,6 +138,15 @@ class Settings:
MISSION_RESTRICTIONS_SECTION,
default=True,
)
easy_communication: Optional[bool] = choices_option(
"Easy Communication",
page=DIFFICULTY_PAGE,
section=MISSION_RESTRICTIONS_SECTION,
choices={"Player preference": None, "Enforced on": True, "Enforced off": False},
default=None,
)
battle_damage_assessment: Optional[bool] = choices_option(
"Battle damage assessment",
page=DIFFICULTY_PAGE,