Skip to content

Commit

Permalink
支持洛可可
Browse files Browse the repository at this point in the history
  • Loading branch information
ok-oldking committed Jan 11, 2025
1 parent 86f7aca commit 927ece8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/char/Roccia.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ def do_perform(self):
self.continues_normal_attack(1.2)
self.click_liberation()
start = time.time()
has_charge = self.is_forte_full()
if self.click_resonance()[0]:
while self.is_forte_full() and time.time() - start < 4:
self.click(interval=0.2)
while has_charge and self.is_forte_full() and time.time() - start < 4:
self.click(interval=0.1)
return self.switch_next_char()
self.click_echo()
self.switch_next_char()

0 comments on commit 927ece8

Please sign in to comment.