From d60545af7a7cf76626890620c42a134319264ad5 Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Tue, 31 Aug 2021 23:49:23 -0300 Subject: [PATCH] Fixed U-turn and Choice Items interaction --- src/battle_script_commands.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/battle_script_commands.c b/src/battle_script_commands.c index 21bc7945b9..5d2249e03b 100644 --- a/src/battle_script_commands.c +++ b/src/battle_script_commands.c @@ -4872,9 +4872,8 @@ static void Cmd_moveend(void) && (*choicedMoveAtk == 0 || *choicedMoveAtk == 0xFFFF)) { if ((gBattleMoves[gChosenMove].effect == EFFECT_BATON_PASS - || gBattleMoves[gChosenMove].effect == EFFECT_HEALING_WISH - || gBattleMoves[gChosenMove].effect == EFFECT_HIT_ESCAPE) - && !(gMoveResultFlags & MOVE_RESULT_FAILED)) + || gBattleMoves[gChosenMove].effect == EFFECT_HEALING_WISH) + && !(gMoveResultFlags & MOVE_RESULT_FAILED)) { ++gBattleScripting.moveendState; break;