Skip to content

Commit

Permalink
Fix bug doc formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Rangi42 committed Jan 2, 2024
1 parent 184c53e commit 804fa84
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 15 deletions.
18 changes: 4 additions & 14 deletions docs/bugs_and_glitches.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Fixes in the [multi-player battle engine](#multi-player-battle-engine) category
- [Team Rocket battle music is not used for Executives or Scientists](#team-rocket-battle-music-is-not-used-for-executives-or-scientists)
- [No bump noise if standing on tile `$3E`](#no-bump-noise-if-standing-on-tile-3e)
- [Playing Entei's Pokédex cry can distort Raikou's and Suicune's](#playing-enteis-pok%C3%A9dex-cry-can-distort-raikous-and-suicunes)
- [`SFX_RUN` does not play correctly when a wild Pokemon flees from battle](#sfx_run-does-not-play-correctly-when-a-wild-pokemon-flees-from-battle)
- [`SFX_RUN` does not play correctly when a wild Pokémon flees from battle](#sfx_run-does-not-play-correctly-when-a-wild-pok%C3%A9mon-flees-from-battle)
- [Text](#text)
- [Five-digit experience gain is printed incorrectly](#five-digit-experience-gain-is-printed-incorrectly)
- [Only the first three evolution entries can have Stone compatibility reported correctly](#only-the-first-three-evolution-entries-can-have-stone-compatibility-reported-correctly)
Expand Down Expand Up @@ -2729,23 +2729,13 @@ This bug allows all the options to be updated at once if the left or right butto
```


### `SFX_RUN` does not play correctly when a wild Pokemon flees from battle
### `SFX_RUN` does not play correctly when a wild Pokémon flees from battle

Due to the wrong function being called, `SFX_RUN` is never heard when a wild Pokemon flees from battle.

**Fix:** Edit `WildFled_EnemyFled_LinkBattleCanceled` in [engine/battle/core.asm]
(https://github.com/pret/pokecrystal/blob/master/engine/battle/core.asm):
**Fix:** Edit `WildFled_EnemyFled_LinkBattleCanceled` in [engine/battle/core.asm](https://github.com/pret/pokecrystal/blob/master/engine/battle/core.asm):

```diff
.skip_text
-; BUG: SFX_RUN does not play correctly when a wild Pokemon flees from battle (see docs/bugs_and_glitches.md)
call StopDangerSound
call CheckMobileBattleError
jr c, .skip_sfx

ld de, SFX_RUN
ld de, SFX_RUN
- call PlaySFX
+ call WaitPlaySFX

.skip_sfx
```
2 changes: 1 addition & 1 deletion engine/battle/core.asm
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,11 @@ WildFled_EnemyFled_LinkBattleCanceled:
call StdBattleTextbox

.skip_text
; BUG: SFX_RUN does not play correctly when a wild Pokemon flees from battle (see docs/bugs_and_glitches.md)
call StopDangerSound
call CheckMobileBattleError
jr c, .skip_sfx

; BUG: SFX_RUN does not play correctly when a wild Pokémon flees from battle (see docs/bugs_and_glitches.md)
ld de, SFX_RUN
call PlaySFX

Expand Down

0 comments on commit 804fa84

Please sign in to comment.