diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-11 01:02:28 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-11 01:02:28 -0500 |
commit | 41acb0667a321865277f50a45e662b1aae939a00 (patch) | |
tree | 7e6646403fd0a61371e4d1d48956d908655c1321 /battle/effect_commands.asm | |
parent | c6fefd0fe878a350a5e8cb1140d0356c78648ba5 (diff) |
Document macros/map.asm
Rename MORN/DAY/NITE to MORN_F/DAY_F/NITE_F; use MORN/DAY/NITE for shifted values (cleaner for person_events)
Prefix FLOOR to the `elevfloor` constants
Diffstat (limited to 'battle/effect_commands.asm')
-rw-r--r-- | battle/effect_commands.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/battle/effect_commands.asm b/battle/effect_commands.asm index b292474b8..fdb078645 100644 --- a/battle/effect_commands.asm +++ b/battle/effect_commands.asm @@ -9323,21 +9323,21 @@ BattleCommand_ClearHazards: ; 37b39 BattleCommand_HealMorn: ; 37b74 ; healmorn - ld b, MORN + ld b, MORN_F jr BattleCommand_TimeBasedHealContinue ; 37b78 BattleCommand_HealDay: ; 37b78 ; healday - ld b, DAY + ld b, DAY_F jr BattleCommand_TimeBasedHealContinue ; 37b7c BattleCommand_HealNite: ; 37b7c ; healnite - ld b, NITE + ld b, NITE_F ; fallthrough ; 37b7e |