ref: cca2afe8273875723092c60e3c8e112c280f4384
parent: e4d60b4e5bdbb2303452e3c7f470e6eb02cae68c
author: Rangi <remy.oukaour+rangi42@gmail.com>
date: Tue Apr 23 15:07:41 EDT 2019
More fixes for fixes
--- a/docs/bugs_and_glitches.md
+++ b/docs/bugs_and_glitches.md
@@ -1711,6 +1711,7 @@
call ValidateTempWildMonSpecies
jr c, .nowildbattle
+- ld a, b ; This is in the wrong place.
cp UNOWN
jr nz, .done
```
@@ -1726,7 +1727,7 @@
ld de, 3
ld hl, .pointers
call IsInArray
- jr nc, .nope_bugged
+ jr nc, .nope
pop bc
inc hl
@@ -1735,7 +1736,7 @@
ld l, a
jp hl
- .nope_bugged
+ .nope
- ; pop bc
+ pop bc
xor a
--- a/engine/overworld/events.asm
+++ b/engine/overworld/events.asm
@@ -560,7 +560,7 @@
ld de, 3
ld hl, .pointers
call IsInArray
- jr nc, .nope_bugged
+ jr nc, .nope
pop bc
inc hl
@@ -569,7 +569,7 @@
ld l, a
jp hl
-.nope_bugged
+.nope
; pop bc
xor a
ret