1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-09 12:49:03 +08:00

Fix: Skip event story in event_20260226_cn

This commit is contained in:
LmeSzinc 2026-03-06 01:12:54 +08:00
parent b24d09f1a0
commit c9e95702dc

View File

@ -201,6 +201,14 @@ class EventStory(CampaignUI, Combat, LoginHandler):
return 'unknown' return 'unknown'
def run(self): def run(self):
event = self.config.cross_get('Event.Campaign.Event', '')
if event in [
# event story is in event minigame
'event_20260226_cn',
]:
logger.info(f'Current event ({event}) does not have event story, stopped')
return
if not self.device.app_is_running(): if not self.device.app_is_running():
logger.warning('Game is not running, start it') logger.warning('Game is not running, start it')
self.app_start() self.app_start()