0
0
mirror of https://github.com/ok-oldking/ok-wuthering-waves.git synced 2025-06-03 09:25:19 +00:00

修复今汐有时候不喷

This commit is contained in:
firedcto@gmail.com 2024-10-17 18:56:44 +08:00
parent 92551c3a5b
commit db46289480
2 changed files with 3 additions and 8 deletions

View File

@ -38,8 +38,6 @@ class Jinhsi(BaseChar):
self.logger.info(
f'switch priority max because has_intro {has_intro} incarnation {self.incarnation} incarnation_cd {self.incarnation_cd}')
return Priority.MAX
elif self.echo_available():
return super().do_get_switch_priority(current_char, has_intro)
else:
return Priority.MIN

View File

@ -3,10 +3,7 @@ from src.char.BaseChar import BaseChar
class Mortefi(BaseChar):
def do_perform(self):
if self.has_intro:
self.wait_down()
else:
self.click_liberation()
self.click_resonance()
self.click_echo(sleep_time=0.1)
self.click_liberation()
self.click_resonance()
self.click_echo()
self.switch_next_char()