mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-09 18:39:04 +08:00
* Fix bugs (#4569) * fix: add PAUSE_HolyLight at `_at_low_hp` * fix: handle map file name * Bugfix Resolved misrecognition of EXP_INFO_B in campaign_main_2 and campaign_main_3. Refer to issue #4553. Reason was the background map was similar to the exp info page. Recognition also appears in-stage since the chapter name flashes past but this will have no adverse affects. * Remove mistakenly ctrl-c-ed override --------- Co-authored-by: 霞飛 <saarchaffee@qq.com>
11 lines
356 B
Python
11 lines
356 B
Python
from module.campaign.campaign_base import CampaignBase as CampaignBase_
|
|
from module.ui.page import page_campaign
|
|
|
|
|
|
class CampaignBase(CampaignBase_):
|
|
def handle_exp_info(self):
|
|
# Random background of Main Chapter 2 hits EXP_INFO_B
|
|
if self.ui_page_appear(page_campaign):
|
|
return False
|
|
return super().handle_exp_info()
|