mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
parent
9801b93906
commit
c7dee19a48
@ -2437,13 +2437,6 @@ This bug can prevent you from talking to Eusine in Celadon City or encountering
|
|||||||
**Fix:** Edit `CheckOwnMonAnywhere` in [engine/pokemon/search_owned.asm](https://github.com/pret/pokecrystal/blob/master/engine/pokemon/search_owned.asm):
|
**Fix:** Edit `CheckOwnMonAnywhere` in [engine/pokemon/search_owned.asm](https://github.com/pret/pokecrystal/blob/master/engine/pokemon/search_owned.asm):
|
||||||
|
|
||||||
```diff
|
```diff
|
||||||
; If there are no monsters in the party,
|
|
||||||
; the player must not own any yet.
|
|
||||||
-; BUG: CheckOwnMon does not check the Day-Care (see docs/bugs_and_glitches.md)
|
|
||||||
ld a, [wPartyCount]
|
|
||||||
and a
|
|
||||||
ret z
|
|
||||||
|
|
||||||
-; BUG: CheckOwnMon does not check the Day-Care (see docs/bugs_and_glitches.md)
|
-; BUG: CheckOwnMon does not check the Day-Care (see docs/bugs_and_glitches.md)
|
||||||
+ ld hl, wBreedMon1Species
|
+ ld hl, wBreedMon1Species
|
||||||
+ ld bc, wBreedMon1OT
|
+ ld bc, wBreedMon1OT
|
||||||
@ -2454,6 +2447,11 @@ This bug can prevent you from talking to Eusine in Celadon City or encountering
|
|||||||
+ ld bc, wBreedMon2OT
|
+ ld bc, wBreedMon2OT
|
||||||
+ call CheckOwnMon
|
+ call CheckOwnMon
|
||||||
+ ret c ; found!
|
+ ret c ; found!
|
||||||
|
+
|
||||||
|
ld d, a
|
||||||
|
ld e, 0
|
||||||
|
ld hl, wPartyMon1Species
|
||||||
|
ld bc, wPartyMonOTs
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user