diff options
author | dannye <33dannye@gmail.com> | 2021-04-30 14:03:34 -0500 |
---|---|---|
committer | dannye <33dannye@gmail.com> | 2021-04-30 14:03:34 -0500 |
commit | 0cbd5acb76d0f5df35ebf529bd227c201e0b3115 (patch) | |
tree | fcc3124631cbbc05d3f4df670d13e5f2a3e02e59 /engine/link | |
parent | 3d7293abf6d09879106457d12b52bfb4b88922ea (diff) | |
parent | 6a31663c960a5c1da9dbbf12d49e0252860b96d0 (diff) |
Merge branch 'master' of https://github.com/pret/pokered
Diffstat (limited to 'engine/link')
-rw-r--r-- | engine/link/cable_club.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/link/cable_club.asm b/engine/link/cable_club.asm index 5124c744..f9728f47 100644 --- a/engine/link/cable_club.asm +++ b/engine/link/cable_club.asm @@ -655,7 +655,7 @@ TradeCenter_DrawPartyLists: ld de, wPartySpecies call TradeCenter_PrintPartyListNames hlcoord 2, 9 - ld de, wEnemyPartyMons + ld de, wEnemyPartySpecies ; fall through TradeCenter_PrintPartyListNames: @@ -707,7 +707,7 @@ TradeCenter_Trade: ld bc, NAME_LENGTH call CopyData ld a, [wTradingWhichEnemyMon] - ld hl, wEnemyPartyMons + ld hl, wEnemyPartySpecies ld c, a ld b, 0 add hl, bc @@ -803,7 +803,7 @@ TradeCenter_Trade: ld a, [wTradingWhichEnemyMon] ld c, a ld [wWhichPokemon], a - ld hl, wEnemyPartyMons + ld hl, wEnemyPartySpecies ld d, 0 ld e, a add hl, de @@ -823,7 +823,7 @@ TradeCenter_Trade: ld a, $1 ld [wForceEvolution], a ld a, [wTradingWhichEnemyMon] - ld hl, wEnemyPartyMons + ld hl, wEnemyPartySpecies ld b, 0 ld c, a add hl, bc |