Merge pull request #1605 from LOuroboros/canEvolve

Corrected `CanEvolve` function
This commit is contained in:
ExpoSeed 2021-08-26 19:32:22 -05:00 committed by GitHub
commit 1f75f6e201
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7688,7 +7688,9 @@ static bool32 CanEvolve(u32 species)
for (i = 0; i < EVOS_PER_MON; i++)
{
if (gEvolutionTable[species][i].method && gEvolutionTable[species][i].method != EVO_MEGA_EVOLUTION)
if (gEvolutionTable[species][i].method
&& gEvolutionTable[species][i].method != EVO_MEGA_EVOLUTION
&& gEvolutionTable[species][i].method != EVO_MOVE_MEGA_EVOLUTION)
return TRUE;
}
return FALSE;