From 420a6f1e6dfe2d30cc57b3dc5dcd260dd5bf23a5 Mon Sep 17 00:00:00 2001 From: LmeSzinc <37934724+LmeSzinc@users.noreply.github.com> Date: Mon, 15 Jul 2024 23:45:02 +0800 Subject: [PATCH] Fix: [ALAS] Device.config was never updated during scheduler run --- module/alas.py | 1 + 1 file changed, 1 insertion(+) diff --git a/module/alas.py b/module/alas.py index f03f0a18b..9fe6ea460 100644 --- a/module/alas.py +++ b/module/alas.py @@ -258,6 +258,7 @@ class AzurLaneAutoScript: task = self.get_next_task() # Init device and change server _ = self.device + self.device.config = self.config # Skip first restart if self.is_first_task and task == 'Restart': logger.info('Skip task `Restart` at scheduler start')