mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-09 18:39:04 +08:00
Fix: Subpress EXP_INFO_B in Abyssal Refrain (event_20220224_cn) (#4537)
This commit is contained in:
parent
e55f14f246
commit
4cd0261fcd
@ -1,4 +1,5 @@
|
||||
from module.campaign.campaign_base import CampaignBase as CampaignBase_
|
||||
from module.ui.page import page_event
|
||||
|
||||
|
||||
class CampaignBase(CampaignBase_):
|
||||
@ -6,3 +7,9 @@ class CampaignBase(CampaignBase_):
|
||||
if super().handle_clear_mode_config_cover():
|
||||
self.config.MAP_SIREN_TEMPLATE = ['SS']
|
||||
self.config.MAP_HAS_SIREN = True
|
||||
|
||||
def handle_exp_info(self):
|
||||
# Random background hits EXP_INFO_B
|
||||
if self.ui_page_appear(page_event):
|
||||
return False
|
||||
return super().handle_exp_info()
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
from module.ui.page import page_event
|
||||
from ..campaign_war_archives.campaign_base import CampaignBase as CampaignBase_
|
||||
|
||||
|
||||
@ -6,3 +7,9 @@ class CampaignBase(CampaignBase_):
|
||||
if super().handle_clear_mode_config_cover():
|
||||
self.config.MAP_SIREN_TEMPLATE = ['SS']
|
||||
self.config.MAP_HAS_SIREN = True
|
||||
|
||||
def handle_exp_info(self):
|
||||
# Random background hits EXP_INFO_B
|
||||
if self.ui_page_appear(page_event):
|
||||
return False
|
||||
return super().handle_exp_info()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user