diff options
Diffstat (limited to 'engine/breeding.asm')
-rwxr-xr-x | engine/breeding.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/breeding.asm b/engine/breeding.asm index d66616061..f0f69e539 100755 --- a/engine/breeding.asm +++ b/engine/breeding.asm @@ -112,14 +112,14 @@ CheckBreedmonCompatibility: ; 16e1d ld [CurSpecies], a call GetBaseData ld a, [BaseEggGroups] - cp NO_EGGS * $11 + cp EGG_UNDISCOVERED * $11 jr z, .Incompatible ld a, [wBreedMon1Species] ld [CurSpecies], a call GetBaseData ld a, [BaseEggGroups] - cp NO_EGGS * $11 + cp EGG_UNDISCOVERED * $11 jr z, .Incompatible ; Ditto is automatically compatible with everything. |