1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-11 22:08:20 +08:00

Fix: Modified settings are still retained and written to file in the next update (#737)

This commit is contained in:
LmeSzinc
2021-11-12 22:19:25 +08:00
parent f7035922fc
commit f8d6848d84
2 changed files with 4 additions and 3 deletions

View File

@@ -61,7 +61,7 @@ class CampaignRun(UI):
'please check for update, or make map files yourself using dev_tools/map_extractor.py')
raise RequestHumanTakeover
config = copy.copy(self.config).merge(self.module.Config())
config = copy.deepcopy(self.config).merge(self.module.Config())
device = self.device
self.campaign = self.module.Campaign(config=config, device=device)