mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-22 08:37:42 +00:00
Fix: handle_ascension_dungeon_prepare() is called in weekly
This commit is contained in:
parent
442eaf195b
commit
3566ff0302
@ -133,6 +133,7 @@ class Combat(CombatInteract, CombatPrepare, CombatState, CombatTeam, CombatSuppo
|
||||
trial += 1
|
||||
continue
|
||||
if self.handle_combat_interact():
|
||||
self.map_A_timer.reset()
|
||||
continue
|
||||
if self.handle_ascension_dungeon_prepare():
|
||||
continue
|
||||
|
@ -21,6 +21,10 @@ class WeeklyDungeon(Dungeon):
|
||||
dungeon=dungeon, team=team, wave_limit=wave_limit,
|
||||
support_character=support_character, skip_ui_switch=skip_ui_switch)
|
||||
|
||||
def handle_ascension_dungeon_prepare(self):
|
||||
# combat_wave_cost==30 in weekly, but no handle_ascension_dungeon_prepare required
|
||||
return False
|
||||
|
||||
def get_weekly_remain(self) -> int:
|
||||
"""
|
||||
Pages:
|
||||
|
Loading…
Reference in New Issue
Block a user