diff options
author | mid-kid <esteve.varela@gmail.com> | 2018-02-22 21:35:11 +0100 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2018-02-22 21:36:14 +0100 |
commit | 3d34f5a5a371ad2b9979ae36763cdfb52c581dab (patch) | |
tree | a4039e1486138bfc4f84d2e6c8b9119b7677e1d1 /engine/npctrade.asm | |
parent | a22343d32c9f81b9cd2a4f2ff49725cfbed6671d (diff) |
Label wPokemonWithdrawDepositParameter of RemoveMonFromPartyOrBox
It takes a clearly different parameter, completely unrelated and
different in function to PC_DEPOSIT and PC_WITHDRAW.
Diffstat (limited to 'engine/npctrade.asm')
-rwxr-xr-x | engine/npctrade.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/npctrade.asm b/engine/npctrade.asm index 7082d5442..49f7123e1 100755 --- a/engine/npctrade.asm +++ b/engine/npctrade.asm @@ -185,8 +185,8 @@ DoNPCTrade: ; fcc63 ld a, [wOTTrademonSpecies] ld [wCurPartySpecies], a xor a - ld [wMonType], a - ld [wPokemonWithdrawDepositParameter], a + ld [wMonType], a ; PARTYMON + ld [wPokemonWithdrawDepositParameter], a ; REMOVE_PARTY callfar RemoveMonFromPartyOrBox predef TryAddMonToParty |