diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-29 23:23:44 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-29 23:23:44 -0400 |
commit | b89636769c271cadc154e045cca3ea06cb4a61e1 (patch) | |
tree | 068a164789a9a8e8b303b4322d9d268e2d6bce8b /docs | |
parent | 15ad69e0c6e35be34dc65322209d3673607d00c5 (diff) |
Updates to more closely sync with pokecrystal
Diffstat (limited to 'docs')
-rw-r--r-- | docs/bugs_and_glitches.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/bugs_and_glitches.md b/docs/bugs_and_glitches.md index 965700b7..c30f74fb 100644 --- a/docs/bugs_and_glitches.md +++ b/docs/bugs_and_glitches.md @@ -70,12 +70,12 @@ All the bugs documented here were fixed in Pokémon Crystal. Any that weren't ar ## Present's text overflows when it fails to heal an enemy Pokémon with a long name -**Fix:** Edit `CantReceiveGiftText` in [data/text/battle.asm](https://github.com/pret/pokegold/blob/master/data/text/battle.asm): +**Fix:** Edit `PresentFailedText` in [data/text/battle.asm](https://github.com/pret/pokegold/blob/master/data/text/battle.asm): ```diff -; BUG: Pokémon names 8-10 characters long can overflow the textbox, -; printing as "Enemy 1234567890 can't": up to 21 characters, over 18. - CantReceiveGiftText: + PresentFailedText: - text "<TARGET> can't" - line "receive the gift!" + text "<TARGET>" |