diff options
author | yenatch <yenatch@gmail.com> | 2018-03-21 18:55:09 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2018-03-21 18:55:09 -0400 |
commit | c80eddf988523b81c2e26b57a648ee6069c8955c (patch) | |
tree | d34f6834e5c39ef2a18e14e0d782ffaff5e21903 /engine/menu/party_menu.asm | |
parent | 509ee98219bae35c3edae81ed36f3c40ab9dbd5b (diff) |
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 |