summaryrefslogtreecommitdiff
path: root/Automatically-reuse-Repel.md
diff options
context:
space:
mode:
Diffstat (limited to 'Automatically-reuse-Repel.md')
-rw-r--r--Automatically-reuse-Repel.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/Automatically-reuse-Repel.md b/Automatically-reuse-Repel.md
index 64f27aa..c96f188 100644
--- a/Automatically-reuse-Repel.md
+++ b/Automatically-reuse-Repel.md
@@ -116,7 +116,7 @@ Edit [engine/events/misc_scripts_2.asm](../blob/master/engine/events/misc_script
.text
; REPEL's effect wore off.
- text_far UnknownText_0x1bd308
+ text_far _RepelWoreOffText
text_end
+UseAnotherRepelScript::
@@ -130,11 +130,11 @@ Edit [engine/events/misc_scripts_2.asm](../blob/master/engine/events/misc_script
+ end
+
+.text:
-+ text_far UseAnotherRepelText
++ text_far _UseAnotherRepelText
+ text_end
```
-Again, we have not yet defined `UseAnotherRepelText`, so let's finish up with that.
+Again, we have not yet defined `_UseAnotherRepelText`, so let's finish up with that.
## 5. Define the "Use another?" message
@@ -142,12 +142,12 @@ Again, we have not yet defined `UseAnotherRepelText`, so let's finish up with th
Edit [data/text/common_1.asm](../blob/master/data/text/common_1.asm):
```diff
- UnknownText_0x1bd308::
+ _RepelWoreOffText::
text "REPEL's effect"
line "wore off."
done
-+UseAnotherRepelText::
++_UseAnotherRepelText::
+ text "REPEL's effect"
+ line "wore off."
+