fix AI_WhoStrikesFirst

This commit is contained in:
ghoulslash 2022-02-09 11:23:30 -05:00
parent 69d62f1cb9
commit fcc85e8c17

View file

@ -1022,9 +1022,9 @@ u8 AI_WhoStrikesFirst(u8 battlerAI, u8 battler2)
{
// Priorities are the same(at least comparing to moves the AI is aware of), decide by speed.
if (GetWhoStrikesFirst(battlerAI, battler2, TRUE) == 0)
return TRUE;
return AI_IS_FASTER;
else
return FALSE;
return AI_IS_SLOWER;
}
}