summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2021-10-28 17:02:13 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2021-10-28 17:02:13 -0400
commit753ed7186c8346ea49ad1eb347f1194a687d21ad (patch)
tree2c4949ba477b78b5efc2c0cbc184e6126e56e3ff /docs
parent187b120007f14b2b7f44bad5a33de6021ec07d1a (diff)
Use -1 for terminating happiness probability data
Diffstat (limited to 'docs')
-rw-r--r--docs/bugs_and_glitches.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/bugs_and_glitches.md b/docs/bugs_and_glitches.md
index 5192f1f1b..41411100a 100644
--- a/docs/bugs_and_glitches.md
+++ b/docs/bugs_and_glitches.md
@@ -1990,9 +1990,9 @@ CopyPokemonName_Buffer1_Buffer3:
```diff
HappinessData_DaisysGrooming:
-- db 100 percent, 2, HAPPINESS_GROOMING ; 99.6% chance
-+ db 50 percent + 1, 2, HAPPINESS_GROOMING ; 50% chance
-+ db 100 percent, 2, HAPPINESS_GROOMING ; 50% chance
+- db -1, 2, HAPPINESS_GROOMING ; 99.6% chance
++ db 50 percent, 2, HAPPINESS_GROOMING ; 50% chance
++ db -1, 2, HAPPINESS_GROOMING ; 50% chance
```