diff options
Diffstat (limited to 'Tips-and-tricks.md')
-rw-r--r-- | Tips-and-tricks.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tips-and-tricks.md b/Tips-and-tricks.md index 43cd764..a60b020 100644 --- a/Tips-and-tricks.md +++ b/Tips-and-tricks.md @@ -96,8 +96,8 @@ Edit [engine/battle/core.asm](../blob/master/engine/battle/core.asm): ; Set happiness + ld a, [wBattleMode] + dec a -+ ld a, $ff -+ jr nz, .load_happiness ; If it's a Trainer battle, give enemy mon max happiness. ++ ld a, $ff ; Give the enemy mon max happiness... ++ jr nz, .load_happiness ; ...if it's a Trainer battle. ld a, BASE_HAPPINESS +.load_happiness ld [wEnemyMonHappiness], a |