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 b309ae8..64f27aa 100644 --- a/Automatically-reuse-Repel.md +++ b/Automatically-reuse-Repel.md @@ -66,7 +66,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_far Text_RepelUsedEarlierIsStillInEffect - db "@" + text_end ``` @@ -117,7 +117,7 @@ Edit [engine/events/misc_scripts_2.asm](../blob/master/engine/events/misc_script .text ; REPEL's effect wore off. text_far UnknownText_0x1bd308 - db "@" + text_end +UseAnotherRepelScript:: + opentext @@ -131,7 +131,7 @@ Edit [engine/events/misc_scripts_2.asm](../blob/master/engine/events/misc_script + +.text: + text_far UseAnotherRepelText -+ db "@" ++ text_end ``` Again, we have not yet defined `UseAnotherRepelText`, so let's finish up with that. |