diff options
Diffstat (limited to 'engine')
| -rwxr-xr-x | engine/dumps/bank01.asm | 4 | ||||
| -rwxr-xr-x | engine/dumps/bank03.asm | 4 | ||||
| -rwxr-xr-x | engine/pokemon/health.asm | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/engine/dumps/bank01.asm b/engine/dumps/bank01.asm index 36a2f6c..ab5f52d 100755 --- a/engine/dumps/bank01.asm +++ b/engine/dumps/bank01.asm @@ -3062,8 +3062,8 @@ Function6445: push hl push de dec a - ld hl, Moves - ld bc, $0007 + ld hl, Moves + MOVE_PP + ld bc, MOVE_LENGTH call AddNTimes ld a, BANK(Moves) call GetFarByte diff --git a/engine/dumps/bank03.asm b/engine/dumps/bank03.asm index 8ea4aa5..4e9d5ea 100755 --- a/engine/dumps/bank03.asm +++ b/engine/dumps/bank03.asm @@ -5130,8 +5130,8 @@ Functionf960: ld a, [hl] dec a push hl - ld hl, Moves - ld bc, $0007 + ld hl, Moves + MOVE_PP + ld bc, MOVE_LENGTH call AddNTimes ld a, BANK(Moves) call GetFarByte diff --git a/engine/pokemon/health.asm b/engine/pokemon/health.asm index 0bb3536..cf50310 100755 --- a/engine/pokemon/health.asm +++ b/engine/pokemon/health.asm @@ -33,8 +33,8 @@ HealParty: jr z, .next_move dec a push hl - ld hl, Moves - ld bc, MOVE_DATA_SIZE + ld hl, Moves + MOVE_PP + ld bc, MOVE_LENGTH call AddNTimes ld a, BANK(Moves) call GetFarByte |
