diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-01-19 19:11:38 -0500 | 
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-01-19 19:11:38 -0500 | 
| commit | 53c92b4792ede559f9a773d77ee44a2e9064bbbf (patch) | |
| tree | a6e289042ee1d85663fc7a3e6d0c78e3555fac2f /docs | |
| parent | 1853e3d127556103fe5828b8589305192106d27e (diff) | |
Bug: Clair can give TM24 Dragonbreath twice
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/bugs_and_glitches.md | 14 | 
1 files changed, 10 insertions, 4 deletions
| diff --git a/docs/bugs_and_glitches.md b/docs/bugs_and_glitches.md index b74554823..993387b57 100644 --- a/docs/bugs_and_glitches.md +++ b/docs/bugs_and_glitches.md @@ -41,6 +41,7 @@ Fixes are written in the `diff` format. If you've used Git before, this should l  - [Love Ball boosts catch rate for the wrong gender](#love-ball-boosts-catch-rate-for-the-wrong-gender)  - [Fast Ball only boosts catch rate for three Pokémon](#fast-ball-only-boosts-catch-rate-for-three-pokémon)  - [Dragon Scale, not Dragon Fang, boosts Dragon-type moves](#dragon-scale-not-dragon-fang-boosts-dragon-type-moves) +- [Clair can give TM24 Dragonbreath twice](#clair-can-give-tm24-dragonbreath-twice)  - [Daisy's grooming doesn't always increase happiness](#daisys-grooming-doesnt-always-increase-happiness)  - [Magikarp in Lake of Rage are shorter, not longer](#magikarp-in-lake-of-rage-are-shorter-not-longer)  - [Magikarp length limits have a unit conversion error](#magikarp-length-limits-have-a-unit-conversion-error) @@ -90,8 +91,7 @@ Fixes are written in the `diff` format. If you've used Git before, this should l  +	ret nc  +  +.cap -+	ld h, HIGH(MAX_STAT_VALUE) -+	ld l, LOW(MAX_STAT_VALUE) ++	ld hl, MAX_STAT_VALUE   	ret  ``` @@ -128,8 +128,7 @@ Fixes are written in the `diff` format. If you've used Git before, this should l  +	ret nc  +  +.cap -+	ld b, HIGH(MAX_STAT_VALUE) -+	ld c, LOW(MAX_STAT_VALUE) ++	ld bc, MAX_STAT_VALUE   	ret  ``` @@ -782,6 +781,13 @@ This can bring Pokémon straight from level 1 to 100 by gaining just a few exper  ``` +## Clair can give TM24 Dragonbreath twice + +([Video](https://www.youtube.com/watch?v=8BvBjqxmyOk)) + +*To do:* Identify specific code causing this bug and fix it. + +  ## Daisy's grooming doesn't always increase happiness  This is a bug with `HaircutOrGrooming` in [engine/events/haircut.asm](/engine/events/haircut.asm): | 
