summaryrefslogtreecommitdiff
path: root/engine/move_mon.asm
diff options
context:
space:
mode:
authormid-kid <esteve.varela@gmail.com>2018-02-22 21:35:11 +0100
committermid-kid <esteve.varela@gmail.com>2018-02-22 21:36:14 +0100
commit3d34f5a5a371ad2b9979ae36763cdfb52c581dab (patch)
treea4039e1486138bfc4f84d2e6c8b9119b7677e1d1 /engine/move_mon.asm
parenta22343d32c9f81b9cd2a4f2ff49725cfbed6671d (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/move_mon.asm')
-rwxr-xr-xengine/move_mon.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/move_mon.asm b/engine/move_mon.asm
index a3600d2f0..0a4465f97 100755
--- a/engine/move_mon.asm
+++ b/engine/move_mon.asm
@@ -918,7 +918,7 @@ GetLastPartyMon: ; de1a
DepositMonWithDayCareMan: ; de2a
ld de, wBreedMon1Nick
call DepositBreedmon
- xor a
+ xor a ; REMOVE_PARTY
ld [wPokemonWithdrawDepositParameter], a
jp RemoveMonFromPartyOrBox
; de37
@@ -926,7 +926,7 @@ DepositMonWithDayCareMan: ; de2a
DepositMonWithDayCareLady: ; de37
ld de, wBreedMon2Nick
call DepositBreedmon
- xor a
+ xor a ; REMOVE_PARTY
ld [wPokemonWithdrawDepositParameter], a
jp RemoveMonFromPartyOrBox
; de44