diff options
-rw-r--r-- | docs/bugs_and_glitches.md | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/bugs_and_glitches.md b/docs/bugs_and_glitches.md index 52c0ac665..3a6e5508c 100644 --- a/docs/bugs_and_glitches.md +++ b/docs/bugs_and_glitches.md @@ -329,8 +329,14 @@ CheckHiddenOpponent: ret ``` -*To do:* Fix this bug. +Fix: + +```asm +CheckHiddenOpponent: ; 37daa + ret +``` +The code in `CheckHiddenOpponent` is completely redundant as `CheckHit` already does what this code is doing. Another option is to remove `CheckHiddenOpponent` completely, the calls to `CheckHiddenOpponent`, and the jump afterwards. ## Beat Up can desynchronize link battles |