Use -1 for terminating happiness probability data

This commit is contained in:
Rangi
2021-10-28 17:02:13 -04:00
parent 187b120007
commit 753ed7186c
2 changed files with 10 additions and 10 deletions

View File

@@ -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
```