From 4dda41a3a1a93ffe0f1e313d8448f7a2addc01ba Mon Sep 17 00:00:00 2001 From: 0O0o0oOoO00 <11174151+0o0o0oooo00@users.noreply.github.com> Date: Sat, 25 Apr 2026 16:51:02 +0800 Subject: [PATCH] adj: move RewardSupportBuild to new AzurLaneAutoScript to avoid changing origin code --- alas.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/alas.py b/alas.py index 19729e9a7..c88b0aa22 100644 --- a/alas.py +++ b/alas.py @@ -229,10 +229,6 @@ class AzurLaneAutoScript: from module.gacha.gacha_reward import RewardGacha RewardGacha(config=self.config, device=self.device).run() - def support_build(self): - from module.support_build.reward import RewardSupportBuild - RewardSupportBuild(config=self.config, device=self.device).run() - def freebies(self): from module.freebies.freebies import Freebies Freebies(config=self.config, device=self.device).run() @@ -943,7 +939,8 @@ class AzurLaneAutoScript(AzurLaneAutoScript): @disable_all_crack def support_build(self): - super().support_build() + from module.support_build.reward import RewardSupportBuild + RewardSupportBuild(config=self.config, device=self.device).run() def hook_op(self): op = self.config.full_config.HookOp_HookOp_Operation