diff options
Diffstat (limited to 'Automatically-reuse-Repel.md')
-rw-r--r-- | Automatically-reuse-Repel.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Automatically-reuse-Repel.md b/Automatically-reuse-Repel.md index 5915903..b309ae8 100644 --- a/Automatically-reuse-Repel.md +++ b/Automatically-reuse-Repel.md @@ -65,7 +65,7 @@ The file that defines item effects is, predictably, [engine/items/item_effects.a TextJump_RepelUsedEarlierIsStillInEffect: ; The REPEL used earlier is still in effect. - text_jump Text_RepelUsedEarlierIsStillInEffect + text_far Text_RepelUsedEarlierIsStillInEffect db "@" ``` @@ -116,7 +116,7 @@ Edit [engine/events/misc_scripts_2.asm](../blob/master/engine/events/misc_script .text ; REPEL's effect wore off. - text_jump UnknownText_0x1bd308 + text_far UnknownText_0x1bd308 db "@" +UseAnotherRepelScript:: @@ -130,7 +130,7 @@ Edit [engine/events/misc_scripts_2.asm](../blob/master/engine/events/misc_script + end + +.text: -+ text_jump UseAnotherRepelText ++ text_far UseAnotherRepelText + db "@" ``` |