diff options
author | Daniel Harding <33dannye@gmail.com> | 2018-03-24 13:25:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-24 13:25:15 -0500 |
commit | 91e55dbe0ba2e22f4cdf0b5c33aba3e0845ddd01 (patch) | |
tree | 8a651f48a9ffc7f683ff1b2d7c9030fb8302a516 /engine/menu/party_menu.asm | |
parent | 509ee98219bae35c3edae81ed36f3c40ab9dbd5b (diff) | |
parent | 5c4397c899f5b80d5b142ec68603bef31cf92c75 (diff) |
Merge pull request #180 from yenatch/fix-wevosmoves
add wEvosMoves instead of using eevee
Diffstat (limited to 'engine/menu/party_menu.asm')
-rwxr-xr-x | engine/menu/party_menu.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engine/menu/party_menu.asm b/engine/menu/party_menu.asm index 9b07ebb7..8323d0eb 100755 --- a/engine/menu/party_menu.asm +++ b/engine/menu/party_menu.asm @@ -140,19 +140,19 @@ RedrawPartyMenu_: rl b ld c, a add hl, bc - ld de, wcd6d + ld de, wEvosMoves ld a, BANK(EvosMovesPointerTable) ld bc, 2 call FarCopyData - ld hl, wcd6d + ld hl, wEvosMoves ld a, [hli] ld h, [hl] ld l, a - ld de, wcd6d + ld de, wEvosMoves ld a, BANK(EvosMovesPointerTable) - ld bc, EeveeEvosEnd - EeveeEvosMoves + ld bc, wEvosMoves.end - wEvosMoves call FarCopyData - ld hl, wcd6d + ld hl, wEvosMoves ld de, .notAbleToEvolveText ; loop through the pokemon's evolution entries .checkEvolutionsLoop |