Fix AttributeError when enabling cheats in campaign setup

This commit is contained in:
Raffson 2023-12-17 18:12:56 +01:00
parent 94580bad88
commit 93abee2e35
No known key found for this signature in database
GPG Key ID: B0402B2C9B764D99

View File

@ -471,7 +471,7 @@ class QSettingsWidget(QtWidgets.QWizardPage, SettingsContainer):
self.cheat_options.show_base_capture_cheat
)
self.settings.enable_transfer_cheat = self.cheat_options.show_transfer_cheat
self.game.settings.enable_runway_state_cheat = (
self.settings.enable_runway_state_cheat = (
self.cheat_options.enable_runway_state_cheat
)