Skip to content

Commit

Permalink
Fix: Subpress EXP_INFO_B in event_20240815_cn (#4588)
Browse files Browse the repository at this point in the history
  • Loading branch information
LmeSzinc committed Feb 18, 2025
1 parent 2e395ac commit 7845b9b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions campaign/event_20240815_cn/campaign_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from module.combat.assets import GET_ITEMS_1
from module.exception import CampaignNameError
from module.logger import logger
from module.ui.page import page_event


class CampaignBase(CampaignBase_):
Expand Down Expand Up @@ -82,3 +83,9 @@ def handle_campaign_ui_additional(self):
self.ensure_no_stage_entrance()
return True
return super().handle_campaign_ui_additional()

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()

0 comments on commit 7845b9b

Please sign in to comment.