* RotorOpsPerks, mist change, ice halo fix

* Update RotorOpsPerks.lua
- added new points conditions, revised cas bonus
- allow perks to be defined dynamically
- option to silence point scoring messages
- added red coalition support
- multicrew support!

Update MissionGenerator.exe for release
This commit is contained in:
spencershepard
2023-01-28 15:52:20 -08:00
committed by GitHub
parent f382a2e3cc
commit 76e2858c7b
20 changed files with 1037 additions and 22 deletions

View File

@@ -549,6 +549,7 @@ class Window(QMainWindow, Ui_MainWindow):
"imports": self.imports_list,
}
# holds our generator options. We'll pull from the UI or the scenario config file
data = {
"objects": objects,
"credits": credits,
@@ -591,6 +592,7 @@ class Window(QMainWindow, Ui_MainWindow):
"red_cap": self.scenario.getConfigValue("red_cap", default=True),
"blue_cap": self.scenario.getConfigValue("blue_cap", default=True),
"rotorops_server": self.scenario.getConfigValue("rotorops_server", default=False),
"perks": self.perks_checkBox.isChecked(),
}
logger.info("Generating mission with options:")