diff --git a/src/daycare.c b/src/daycare.c index ac2368ed9a..439c0db3d6 100644 --- a/src/daycare.c +++ b/src/daycare.c @@ -504,6 +504,8 @@ static u16 GetEggSpecies(u16 species) found = FALSE; for (j = 1; j < NUM_SPECIES; j++) { + if (!IsSpeciesEnabled(j)) + continue; const struct Evolution *evolutions = GetSpeciesEvolutions(j); if (evolutions == NULL) continue;