1
0
mirror of https://github.com/sui-feng-cb/AzurLaneAutoScript1.git synced 2026-08-20 21:13:06 +08:00

Fix: handle_exp_info signature mismatch causing TypeError in auto_search

This commit is contained in:
positnuec
2026-07-12 08:48:57 +08:00
parent b3ccadf38e
commit 189645b97a
16 changed files with 32 additions and 32 deletions

View File

@@ -3,8 +3,8 @@ from module.ui.page import page_campaign
class CampaignBase(CampaignBase_):
def handle_exp_info(self):
def handle_exp_info(self, handle_fail=False):
# Random background of Main Chapter 2 hits EXP_INFO_B
if self.ui_page_appear(page_campaign):
return False
return super().handle_exp_info()
return super().handle_exp_info(handle_fail=handle_fail)