diff --git a/gen/forcedoptionsgen.py b/gen/forcedoptionsgen.py index bbae0eb2..d18db095 100644 --- a/gen/forcedoptionsgen.py +++ b/gen/forcedoptionsgen.py @@ -32,6 +32,8 @@ class ForcedOptionsGenerator: self.mission.forced_options.labels = ForcedOptions.Labels.Abbreviate elif self.game.settings.labels == "Dot Only": self.mission.forced_options.labels = ForcedOptions.Labels.DotOnly + elif self.game.settings.labels == "Neutral Dot": + self.mission.forced_options.labels = ForcedOptions.Labels.NeutralDot elif self.game.settings.labels == "Off": self.mission.forced_options.labels = ForcedOptions.Labels.None_ diff --git a/qt_ui/uiconstants.py b/qt_ui/uiconstants.py index 19bc1945..30ee7adf 100644 --- a/qt_ui/uiconstants.py +++ b/qt_ui/uiconstants.py @@ -13,7 +13,7 @@ URLS: Dict[str, str] = { "Issues": "https://github.com/dcs-liberation/dcs_liberation/issues", } -LABELS_OPTIONS = ["Full", "Abbreviated", "Dot Only", "Off"] +LABELS_OPTIONS = ["Full", "Abbreviated", "Dot Only", "Neutral Dot", "Off"] SKILL_OPTIONS = ["Average", "Good", "High", "Excellent"] AIRCRAFT_BANNERS: Dict[str, QPixmap] = {}