summaryrefslogtreecommitdiff
path: root/battle
diff options
context:
space:
mode:
Diffstat (limited to 'battle')
-rw-r--r--battle/core.asm2
-rw-r--r--battle/effect_commands.asm6
2 files changed, 4 insertions, 4 deletions
diff --git a/battle/core.asm b/battle/core.asm
index cd745a957..21409c2a4 100644
--- a/battle/core.asm
+++ b/battle/core.asm
@@ -6676,7 +6676,7 @@ CheckSleepingTreeMon: ; 3eb38
; Get list for the time of day
ld hl, .Morn
ld a, [TimeOfDay]
- cp DAY
+ cp DAY_F
jr c, .Check
ld hl, .Day
jr z, .Check
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