diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-20 23:03:40 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-20 23:03:40 -0400 |
commit | 9433b5a75294a76527bfcb661ee57a43202d7185 (patch) | |
tree | 5c5121be95f3b22033948b7ca6c9a293bce590cc /docs/bugs_and_glitches.md | |
parent | 273324e7875e63e69fc4ce77423a9c5b4acc9862 (diff) |
Remove RAM address comments
Diffstat (limited to 'docs/bugs_and_glitches.md')
-rw-r--r-- | docs/bugs_and_glitches.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/bugs_and_glitches.md b/docs/bugs_and_glitches.md index 7b2d3749b..4fd24f7eb 100644 --- a/docs/bugs_and_glitches.md +++ b/docs/bugs_and_glitches.md @@ -371,12 +371,12 @@ This makes the Berserk Gene use the regular confusion duration (2-5 turns). First, edit [wram.asm](https://github.com/pret/pokecrystal/blob/master/wram.asm): ```diff - wTurnEnded:: db ; c6b4 + wTurnEnded:: db - ds 1 -+wIsConfusionDamage:: db ; c6b5 ++wIsConfusionDamage:: db - wPlayerStats:: ; c6b6 + wPlayerStats:: ``` Then edit four routines in [engine/battle/effect_commands.asm](https://github.com/pret/pokecrystal/blob/master/engine/battle/effect_commands.asm): |