From 4be9eba0fb1241b8a143948cc09f355ce885dd19 Mon Sep 17 00:00:00 2001 From: LmeSzinc <37934724+LmeSzinc@users.noreply.github.com> Date: Sun, 1 Oct 2023 16:30:34 +0800 Subject: [PATCH] Fix: Enemy is early killed in Himeko trial --- route/daily/HimekoTrial.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/route/daily/HimekoTrial.py b/route/daily/HimekoTrial.py index ae0c0013c..b3a1f397e 100644 --- a/route/daily/HimekoTrial.py +++ b/route/daily/HimekoTrial.py @@ -42,14 +42,17 @@ class Route(RouteBase, Combat, CharacterTrial): self.wait_next_skill() # Herta A, or Natasha A, depends on who wasn't being attacked self.use_A() - self.wait_next_skill() + if not self.wait_next_skill(): + return # Natasha A, this will also cause weakness break # To achieve In_a_single_battle_inflict_3_Weakness_Break_of_different_Types self.use_A() - self.wait_next_skill() + if not self.wait_next_skill(): + return # Just whoever user A, in case Himeko Q didn't kill it, usually to be Herta self.use_A() - self.wait_next_skill() + if not self.wait_next_skill(): + return # Himeko Q # To achieve Use_an_Ultimate_to_deal_the_final_blow_1_time # May kill the enemy