summaryrefslogtreecommitdiff
path: root/engine/breeding.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2018-02-25 19:23:01 -0500
committerRangi <remy.oukaour+rangi42@gmail.com>2018-02-25 19:23:01 -0500
commit60add76ee7b74fac4067feb0451eac2b8cf35a03 (patch)
tree6248ec6fdc12e41432e2e20cec9a7bde73fe2e04 /engine/breeding.asm
parentcbd423ec0826919a58f0661955bd565d256bdcf1 (diff)
* Remove rept 4 (fa3192e)
* FindGreaterThanThatLevel -> FindAboveLevel (132fe46) * More meaningful egg group names (0eeb00d)
Diffstat (limited to 'engine/breeding.asm')
-rwxr-xr-xengine/breeding.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/breeding.asm b/engine/breeding.asm
index ee8bbbb31..fc183f644 100755
--- a/engine/breeding.asm
+++ b/engine/breeding.asm
@@ -112,14 +112,14 @@ CheckBreedmonCompatibility: ; 16e1d
ld [wCurSpecies], a
call GetBaseData
ld a, [wBaseEggGroups]
- cp EGG_UNDISCOVERED * $11
+ cp EGG_NONE * $11
jr z, .Incompatible
ld a, [wBreedMon1Species]
ld [wCurSpecies], a
call GetBaseData
ld a, [wBaseEggGroups]
- cp EGG_UNDISCOVERED * $11
+ cp EGG_NONE * $11
jr z, .Incompatible
; Ditto is automatically compatible with everything.