diff options
author | Nog-Frog <> | 2020-05-26 14:10:55 +0300 |
---|---|---|
committer | Nog-Frog <nogatheunicorn@gmail.com> | 2020-05-26 15:14:46 +0300 |
commit | 39f0bcb987ca573d86a2a22a8391236fe6534587 (patch) | |
tree | 143411de25af3e7bb8d4e7538b886741f56c88b8 | |
parent | f52c1bb78d5609abdabd4f2594c716bb4e0b2e69 (diff) |
Change "Set to box" to "Sent to box"
-rwxr-xr-x | engine/give_pokemon.asm | 6 | ||||
-rw-r--r-- | text.asm | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/engine/give_pokemon.asm b/engine/give_pokemon.asm index 49596782..241975c3 100755 --- a/engine/give_pokemon.asm +++ b/engine/give_pokemon.asm @@ -33,7 +33,7 @@ _GivePokemon: .next ld [hli], a ld [hl], "@" - ld hl, SetToBoxText + ld hl, SentToBoxText call PrintText scf ret @@ -73,8 +73,8 @@ GotMonText: TX_SFX_ITEM_1 db "@" -SetToBoxText: - TX_FAR _SetToBoxText +SentToBoxText: + TX_FAR _SentToBoxText db "@" BoxIsFullText: @@ -2730,7 +2730,7 @@ _GotMonText:: TX_RAM wcd6d text "!@@" -_SetToBoxText:: +_SentToBoxText:: text "There's no more" line "room for #MON!" cont "@" |