diff options
author | libjet <libj3t@gmail.com> | 2020-02-18 18:34:17 +0000 |
---|---|---|
committer | libjet <libj3t@gmail.com> | 2020-02-18 18:34:17 +0000 |
commit | 6cbd16985aaa5408f855454c55a073d753b38d8c (patch) | |
tree | 6ee722544f89bc12d5b8b6376c4aa6a0f5283327 /engine/move_mon.asm | |
parent | 76b10c0a49ee07470a326804588217b1c7b9b59b (diff) |
Update math.asm and add print_text.asm
Diffstat (limited to 'engine/move_mon.asm')
-rwxr-xr-x | engine/move_mon.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/move_mon.asm b/engine/move_mon.asm index 70e62498..aae1390b 100755 --- a/engine/move_mon.asm +++ b/engine/move_mon.asm @@ -1130,7 +1130,7 @@ RemoveMonFromPartyOrBox: ; e03f (3:603f) jr z, .asm_e096 ld bc, sBoxMonNicknames .asm_e096 - call Function3231 + call CopyDataUntil ld hl, wPartyMon1 ld bc, PARTYMON_STRUCT_LENGTH ld a, [wPokemonWithdrawDepositParameter] @@ -1156,7 +1156,7 @@ RemoveMonFromPartyOrBox: ; e03f (3:603f) add hl, bc ld bc, wPartyMonOT .asm_e0c9 - call Function3231 + call CopyDataUntil ld hl, wPartyMonNicknames ld a, [wPokemonWithdrawDepositParameter] and a @@ -1176,7 +1176,7 @@ RemoveMonFromPartyOrBox: ; e03f (3:603f) jr z, .asm_e0f3 ld bc, sBoxEnd .asm_e0f3 - call Function3231 + call CopyDataUntil .asm_e0f6 ld a, [wPokemonWithdrawDepositParameter] and a |