diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2018-11-11 17:07:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-11 17:07:17 -0500 |
commit | ffd2b709023d4466c29a228b631db06284e04891 (patch) | |
tree | d2db5b0200e7a5fe783143e6f2cdbd2fd6a1fca2 /engine/pokemon/learn.asm | |
parent | ab2f46baefda1eac7d2e71929f17525f2a4a5afd (diff) | |
parent | a469a92c2633665c011e5c540e1cc593544abe11 (diff) |
Merge pull request #573 from mid-kid/master
text_jump → text_far
Diffstat (limited to 'engine/pokemon/learn.asm')
-rw-r--r-- | engine/pokemon/learn.asm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/engine/pokemon/learn.asm b/engine/pokemon/learn.asm index 9031c6857..dfeb7f97f 100644 --- a/engine/pokemon/learn.asm +++ b/engine/pokemon/learn.asm @@ -202,32 +202,32 @@ ForgetMove: Text_LearnedMove: ; <MON> learned <MOVE>! - text_jump UnknownText_0x1c5660 + text_far UnknownText_0x1c5660 db "@" Text_ForgetWhich: ; Which move should be forgotten? - text_jump UnknownText_0x1c5678 + text_far UnknownText_0x1c5678 db "@" Text_StopLearning: ; Stop learning <MOVE>? - text_jump UnknownText_0x1c5699 + text_far UnknownText_0x1c5699 db "@" Text_DidNotLearn: ; <MON> did not learn <MOVE>. - text_jump UnknownText_0x1c56af + text_far UnknownText_0x1c56af db "@" Text_TryingToLearn: ; <MON> is trying to learn <MOVE>. But <MON> can't learn more than ; four moves. Delete an older move to make room for <MOVE>? - text_jump UnknownText_0x1c56c9 + text_far UnknownText_0x1c56c9 db "@" Text_1_2_and_Poof: - text_jump UnknownText_0x1c5740 ; 1, 2 and… + text_far UnknownText_0x1c5740 ; 1, 2 and… start_asm push de ld de, SFX_SWITCH_POKEMON @@ -238,10 +238,10 @@ Text_1_2_and_Poof: .PoofForgot: ; Poof! <MON> forgot <MOVE>. And… - text_jump UnknownText_0x1c574e + text_far UnknownText_0x1c574e db "@" Text_CantForgetHM: ; HM moves can't be forgotten now. - text_jump UnknownText_0x1c5772 + text_far UnknownText_0x1c5772 db "@" |