diff --git a/src/char/Verina.py b/src/char/Verina.py index cc0c068..8d6e3ce 100644 --- a/src/char/Verina.py +++ b/src/char/Verina.py @@ -12,14 +12,8 @@ class Verina(BaseChar): if self.click_echo(): self.heavy_attack() return self.switch_next_char() - # if self.current_con < 1: - # # self.continues_normal_attack(1.9, click_resonance_if_ready_and_return=True, until_con_full=True) - # if self.current_con < 1: self.heavy_attack() self.switch_next_char() - def count_resonance_priority(self): - return 20 - - def do_get_switch_priority(self, current_char: BaseChar, has_intro=False): - return super().do_get_switch_priority(current_char, has_intro) + def count_base_priority(self): + return - 1 diff --git a/src/char/Yuanwu.py b/src/char/Yuanwu.py index 63120e5..bfac2a2 100644 --- a/src/char/Yuanwu.py +++ b/src/char/Yuanwu.py @@ -9,8 +9,8 @@ class Yuanwu(BaseChar): def count_echo_priority(self): return 0 - def count_liberation_priority(self): - return 1 + def count_base_priority(self): + return -1 def do_perform(self): self.click_liberation(con_less_than=1)