diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2018-12-15 23:58:47 +0100 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2018-12-15 23:58:47 +0100 |
commit | f1421d94c384c1bd76304fcb961ca28d7f0e7e20 (patch) | |
tree | a261fe44f0517e34f733a7f3672dc081834bf10f /src/pokemon_size_record.c | |
parent | 59a69eb62769003a81c0f9f50be5ec5abde96242 (diff) |
Up to sub 0x80ce580
Diffstat (limited to 'src/pokemon_size_record.c')
-rw-r--r-- | src/pokemon_size_record.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pokemon_size_record.c b/src/pokemon_size_record.c index 2d9a2f08f..b0e14d2b1 100644 --- a/src/pokemon_size_record.c +++ b/src/pokemon_size_record.c @@ -210,7 +210,7 @@ void GiveGiftRibbonToParty(u8 index, u8 ribbonId) { struct Pokemon *mon = &gPlayerParty[i]; - if (GetMonData(mon, MON_DATA_SPECIES) != 0 && GetMonData(mon, MON_DATA_SANITY_BIT3) == 0) + if (GetMonData(mon, MON_DATA_SPECIES) != 0 && GetMonData(mon, MON_DATA_SANITY_IS_EGG) == 0) { SetMonData(mon, array[index], &data); gotRibbon = TRUE; |