Skip to content

Commit

Permalink
Fixed IS_DITTO macro (#3558)
Browse files Browse the repository at this point in the history
  • Loading branch information
LOuroboros authored Nov 12, 2023
1 parent ee0222c commit 87aaeca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daycare.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

extern const struct Evolution gEvolutionTable[][EVOS_PER_MON];

#define IS_DITTO(species) (gBaseStats[species].eggGroup1 == EGG_GROUP_DITTO || gBaseStats[species].eggGroup2 == EGG_GROUP_DITTO)
#define IS_DITTO(species) (gSpeciesInfo[species].eggGroups[0] == EGG_GROUP_DITTO || gSpeciesInfo[species].eggGroups[1] == EGG_GROUP_DITTO)

static void ClearDaycareMonMail(struct DaycareMail *mail);
static void SetInitialEggData(struct Pokemon *mon, u16 species, struct DayCare *daycare);
Expand Down

0 comments on commit 87aaeca

Please sign in to comment.