diff options
Diffstat (limited to 'engine/battle/consume_held_item.asm')
-rw-r--r-- | engine/battle/consume_held_item.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/battle/consume_held_item.asm b/engine/battle/consume_held_item.asm index fe63d40a8..c5e3b2041 100644 --- a/engine/battle/consume_held_item.asm +++ b/engine/battle/consume_held_item.asm @@ -2,7 +2,7 @@ ConsumeHeldItem: push hl push de push bc - ld a, [hBattleTurn] + ldh a, [hBattleTurn] and a ld hl, wOTPartyMon1Item ld de, wEnemyMonItem @@ -38,7 +38,7 @@ ConsumeHeldItem: pop af pop hl call GetPartyLocation - ld a, [hBattleTurn] + ldh a, [hBattleTurn] and a jr nz, .ourturn ld a, [wBattleMode] |