fix two turn moves failing on turn 1 w no target
This commit is contained in:
parent
f8550603e1
commit
57c460f40a
1 changed files with 1 additions and 1 deletions
|
@ -1319,7 +1319,7 @@ static void Cmd_attackcanceler(void)
|
|||
}
|
||||
|
||||
gHitMarker |= HITMARKER_OBEYS;
|
||||
if (NoTargetPresent(gCurrentMove))
|
||||
if (NoTargetPresent(gCurrentMove) && (!IsTwoTurnsMove(gCurrentMove) || (gBattleMons[gBattlerAttacker].status2 & STATUS2_MULTIPLETURNS)))
|
||||
{
|
||||
gBattlescriptCurrInstr = BattleScript_ButItFailedAtkStringPpReduce;
|
||||
if (!IsTwoTurnsMove(gCurrentMove) || (gBattleMons[gBattlerAttacker].status2 & STATUS2_MULTIPLETURNS))
|
||||
|
|
Loading…
Reference in a new issue