From 3dce58749a0fa1705906f2e17a832e6e96ccb78a Mon Sep 17 00:00:00 2001 From: Eduardo Quezada D'Ottone Date: Tue, 16 Nov 2021 21:12:29 -0300 Subject: [PATCH] Added Manaphy's and Sinistea's egg species overrides. --- src/daycare.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/daycare.c b/src/daycare.c index ecf4730472..45a0fbd99b 100644 --- a/src/daycare.c +++ b/src/daycare.c @@ -793,13 +793,13 @@ static u16 DetermineEggSpeciesAndParentSlots(struct DayCare *daycare, u8 *parent eggSpecies = GetEggSpecies(species[parentSlots[0]]); if (eggSpecies == SPECIES_NIDORAN_F && daycare->offspringPersonality & EGG_GENDER_MALE) - { eggSpecies = SPECIES_NIDORAN_M; - } if (eggSpecies == SPECIES_ILLUMISE && daycare->offspringPersonality & EGG_GENDER_MALE) - { eggSpecies = SPECIES_VOLBEAT; - } + if (eggSpecies == SPECIES_MANAPHY) + eggSpecies = SPECIES_PHIONE; + if (eggSpecies == SPECIES_SINISTEA_ANTIQUE) + eggSpecies = SPECIES_SINISTEA; // Make Ditto the "mother" slot if the other daycare mon is male. if (species[parentSlots[1]] == SPECIES_DITTO && GetBoxMonGender(&daycare->mons[parentSlots[0]].mon) != MON_FEMALE)