diff options
author | yenatch <yenatch@gmail.com> | 2018-07-26 21:25:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-26 21:25:12 -0400 |
commit | 748d4249805c19399b3c72c0f60d0f1a6ffe43ad (patch) | |
tree | 4c6bf942372fda10691e4ca3d0d74490f561a982 /engine/battle/effect_commands.asm | |
parent | 60ffde3752d079d557dab9a8acecb0bc9e5d46aa (diff) | |
parent | 9a1ae1332cd98abd65c2f26a1ae4d65c6450530a (diff) |
Merge pull request #544 from Rangi42/master
Various fixes found while writing tutorials
Diffstat (limited to 'engine/battle/effect_commands.asm')
-rw-r--r-- | engine/battle/effect_commands.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/battle/effect_commands.asm b/engine/battle/effect_commands.asm index eb30af88b..bb98badca 100644 --- a/engine/battle/effect_commands.asm +++ b/engine/battle/effect_commands.asm @@ -6154,7 +6154,7 @@ BattleCommand_Heal: push de push bc ld c, 2 - call StringCmp + call CompareBytes pop bc pop de pop hl @@ -6573,7 +6573,7 @@ BattleCommand_TimeBasedHealContinue: ; Don't bother healing if HP is already full. push bc - call StringCmp + call CompareBytes pop bc jr z, .Full |