Flip default for factory feature flag.

This is feature complete, we have a handful of campaigns that work with
the new mode now and it will be the only option at some point.
This commit is contained in:
Dan Albert
2021-04-25 18:20:20 -07:00
parent 0f8d366e31
commit 5c0f6cf65e
4 changed files with 7 additions and 5 deletions

View File

@@ -536,6 +536,7 @@ class DifficultyAndAutomationOptions(QtWidgets.QWizardPage):
new_ground_unit_recruitment_label.setOpenExternalLinks(True)
flags_layout.addWidget(new_ground_unit_recruitment_label, 0, 0)
new_ground_unit_recruitment = QtWidgets.QCheckBox()
new_ground_unit_recruitment.setChecked(True)
self.registerField("new_ground_unit_recruitment", new_ground_unit_recruitment)
flags_layout.addWidget(new_ground_unit_recruitment, 0, 1, Qt.AlignRight)

View File

@@ -83,7 +83,7 @@ NEW_GROUND_UNIT_RECRUITMENT_TOOLTIP = (
"travel to the front line."
)
NEW_GROUND_UNIT_RECRUITMENT_BEHAVIOR_LABEL = (
"Enable new ground unit recruitment behavior (WIP)<br />"
"Enable new ground unit recruitment behavior<br />"
'<a href="https://github.com/Khopa/dcs_liberation/issues/986">'
'<span style="color:#FFFFFF;">More information.</span></a>'
)