mirror of
https://github.com/LmeSzinc/AzurLaneAutoScript.git
synced 2025-01-08 13:07:33 +08:00
11 lines
345 B
Python
11 lines
345 B
Python
from module.campaign.campaign_base import CampaignBase as CampaignBase_
|
|
from module.ui.page import page_event
|
|
|
|
|
|
class CampaignBase(CampaignBase_):
|
|
def handle_exp_info(self):
|
|
# Random background of chapter A hits EXP_INFO_B
|
|
if self.ui_page_appear(page_event):
|
|
return False
|
|
return super().handle_exp_info()
|