Fixed Egg graphical data not being properly read. (#3879)
This commit is contained in:
parent
a3c25114b7
commit
c50777d88b
1 changed files with 1 additions and 1 deletions
|
@ -5985,7 +5985,7 @@ u16 SanitizeSpeciesId(u16 species)
|
|||
|
||||
bool32 IsSpeciesEnabled(u16 species)
|
||||
{
|
||||
return gSpeciesInfo[species].baseHP > 0;
|
||||
return gSpeciesInfo[species].baseHP > 0 || species == SPECIES_EGG;
|
||||
}
|
||||
|
||||
void TryToSetBattleFormChangeMoves(struct Pokemon *mon, u16 method)
|
||||
|
|
Loading…
Reference in a new issue