diff options
-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 "@" |