From fd80a1d62c8f58e2e5694cf274b70178c756b8f3 Mon Sep 17 00:00:00 2001 From: 0O0o0oOoO00 <11174151+0o0o0oooo00@users.noreply.github.com> Date: Mon, 2 Feb 2026 15:17:28 +0800 Subject: [PATCH] fix: skip hook_op command to avoid repeated operations when using tool to operate cracker --- alas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alas.py b/alas.py index d8abf74d9..4f7ba22ae 100644 --- a/alas.py +++ b/alas.py @@ -825,7 +825,7 @@ class AzurLaneAutoScript(AzurLaneAutoScript): def run(self, command, skip_first_screenshot=False): try: if self.is_azur: - if command != "restart": + if command != "restart" and command != "hook_op": luahook_disable_all(self.config, self.device) luahook_crack_all(self.config, self.device)